Skip to content

Commit

Permalink
Fix the release name on the release page, and turn off draft/prerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Kruger committed Sep 7, 2023
1 parent 61592e7 commit ddb8f61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/make-link-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
- name: Create and Upload Release
uses: softprops/action-gh-release@v1
with:
name: Release ${{ github.ref }}
draft: true # Note: change this to false when fully operational
prerelease: true # Note: change this to false when fully operational
name: ${{ env.REF_NAME }}
draft: false # Note: change this to false when fully operational
prerelease: false # Note: change this to false when fully operational
files: ./build/link-${{ env.REF_NAME }}.zip, ./build/link-${{ env.REF_NAME }}-v182.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ddb8f61

Please sign in to comment.