Skip to content

Commit

Permalink
ci(release): add release
Browse files Browse the repository at this point in the history
  • Loading branch information
b- committed Dec 10, 2023
1 parent afa12af commit e0a68b8
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 e0a68b8

Please sign in to comment.