Fix release action #153
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 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
env: | |
TERM: xterm | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.4 | |
id: go | |
- name: Test | |
shell: sh | |
run: go test -coverprofile=/tmp/code.coverage ./... | |
- name: Upload coverage | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
go install github.com/mattn/goveralls@latest | |
goveralls -coverprofile=/tmp/code.coverage -service=github | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
env: | |
TERM: xterm | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.4 | |
id: go | |
- name: Build | |
run: scripts/build.sh build all | |
shell: sh | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: builds/* | |
mama: | |
name: Test Release | |
runs-on: ubuntu-latest | |
env: | |
TERM: xterm | |
needs: build | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: artifacts | |
path: artifacts | |
- name: Display structure of downloaded files | |
run: ls -R | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
env: | |
TERM: xterm | |
if: github.ref == 'refs/heads/master' | |
needs: build | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: artifacts | |
path: artifacts | |
- name: Display structure of downloaded files | |
run: ls -R | |
- name: Upload release | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
GH_COMMIT: ${{ github.sha }} | |
GH_ACTION_ID: ${{ github.run_id }} | |
run: .github/scripts/release | |
shell: sh |