Skip to content

Commit

Permalink
fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
robzr committed Mar 6, 2024
1 parent 24513e8 commit 71d7d47
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
name: Release

on:
push:
branches: [main]

env:
GH_TOKEN: ${{ github.token }}

jobs:
Release:
name: Release
permissions: write-all
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -42,7 +45,7 @@ jobs:
name: Create New Release
run: |
gh release \
create "$RELEASE" \
create "${{ steps.get-version.outputs.version }}" \
--generate-notes \
--latest \
sver
Expand Down

0 comments on commit 71d7d47

Please sign in to comment.