Skip to content

Commit

Permalink
added release creation
Browse files Browse the repository at this point in the history
  • Loading branch information
rogueloop committed Nov 1, 2024
1 parent 2a81ee6 commit 9c15acf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ on:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
create-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref_name }}
release_name: ${{ github.ref_name }}
body: |
Release created automatically for tag ${{ github.ref_name }}.
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

releases-matrix:
permissions: write-all
name: Release Go Binary
Expand Down

0 comments on commit 9c15acf

Please sign in to comment.