Update build name #21
Workflow file for this run
This file contains 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 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 |