Skip to content

Add flag conversion utilities for converting string flags to bools and checking ascending and desecnding flags #210

Add flag conversion utilities for converting string flags to bools and checking ascending and desecnding flags

Add flag conversion utilities for converting string flags to bools and checking ascending and desecnding flags #210

Workflow file for this run

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@v6
- name: "Install Node"
uses: actions/setup-node@v6
with:
node-version: 18
- name: "Install Rust"
uses: dtolnay/[email protected] # to install tq via `make config`
- name: Install Go
uses: actions/setup-go@v6
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@v6
with:
name: fastly-cli-build-${{ matrix.platform }}-${{ github.sha }}
path: fastly