Skip to content

Commit

Permalink
Merge pull request #17 from b-/release
Browse files Browse the repository at this point in the history
ci(release): add release
  • Loading branch information
b- committed Dec 10, 2023
2 parents afa12af + e0a68b8 commit 639d53a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# .github/workflows/release.yaml

on:
push:
branches: [ main ]
release:
types: [created]

permissions:
contents: write
packages: write

jobs:
release-linux-amd64:
name: release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
release_tag: dev
overwrite: true

0 comments on commit 639d53a

Please sign in to comment.