diff --git a/.github/workflows/make-link-release.yml b/.github/workflows/make-link-release.yml index 10b8adaf..c0b73044 100644 --- a/.github/workflows/make-link-release.yml +++ b/.github/workflows/make-link-release.yml @@ -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 }}