build(yoink): configuring release

This commit is contained in:
Bryan Bailey
2024-08-30 15:36:11 -04:00
parent 902335a7e2
commit 259d9b6980

View File

@@ -23,14 +23,14 @@ jobs:
- name: Build - name: Build
run: go build -o yoink run: go build -o yoink
- name: Release - name: Create Release
uses: actions/create-release@v1 uses: actions/create-release@v1
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
tag_name: ${{ github.ref }} tag_name: ${{ github.ref }}
release_name: ${{ github.ref }} release_name: Release ${{ github.ref }}
body: ${{ github.event.head_commit.message }} body: Release notes for ${{ github.ref }}
draft: false draft: false
prerelease: false prerelease: false