Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Merge pull request #7 from nothub/dependabot/github_actions/actions/s… #15

Merge pull request #7 from nothub/dependabot/github_actions/actions/s…

Merge pull request #7 from nothub/dependabot/github_actions/actions/s… #15

Workflow file for this run

name: '🧑‍🏭'
on: [ push ]
jobs:
release:
if: startsWith(github.ref, 'refs/tags/v') == true
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-go@v5.0.0
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- run: |
make check
- run: |
make release
- uses: softprops/action-gh-release@v1
with:
body: 'Built at commit: ${{ github.sha }}'
files: 'out/*'