Skip to content

Update build name

Update build name #21

name: Build Executable Binary
on:
push:
branches: ['dev', 'cypress*']
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Repository
run: |
git clone https://github.com/bcgov/gwa-cli.git -b dev
cd gwa-cli
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.5'
- name: set up Just
uses: extractions/setup-just@v1
with:
just-version: 0.8
- name: Build binary using just
run: |
cd gwa-cli
just build
- name: Upload Binary
uses: actions/upload-artifact@v2
with:
name: gwa
path: /usr/local/bin # Replace with the path to your built binary
- name: Check GWA help
run: gwa -h