diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 67e5fcb..8d44190 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,5 +46,8 @@ jobs: with: files: build/compressed/* # Upload the files to the GitHub release tag_name: ${{ github.ref }} # Use the pushed tag as the release version - name: Release ${{ github.ref }} + release_name: Release ${{ github.ref }} body: "Automated release for version ${{ github.ref }}" + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} # Use the personal access token here + |