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 Release Binaries | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
name: Build Release Assets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.20 | |
- name: Display the version of go that we have installed | |
run: go version | |
- name: Display the release tag | |
run: echo ${{ github.event.release.tag_name }} | |
- name: Build the wand executables | |
run: ./build-executables.sh ${{ github.event.release.tag_name }} | |
- name: List the wand executables | |
run: ls -l ./release | |
- name: Upload the wand binaries | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ github.ref }} | |
file: ./release/rodeo-* | |
file_glob: true |