feat(domains): adds description field to domainv1 #101
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build CLI Binaries | |
on: | |
pull_request: | |
branches: | |
- "main" | |
types: | |
[closed] | |
jobs: | |
build: | |
if: ${{ github.event.pull_request.merged }} | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4 | |
- name: "Install Node" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: "Install Rust" | |
uses: dtolnay/[email protected] # to install tq via `make config` | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.24.x | |
- name: "Install dependencies" | |
run: make mod-download | |
shell: bash | |
- name: "Create Build" | |
run: make build | |
shell: bash | |
- name: "Upload Build" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fastly-cli-build-${{ matrix.platform }}-${{ github.sha }} | |
path: fastly |