Skip to content

Commit

Permalink
Support updating releases in Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Dewb committed Dec 20, 2021
1 parent 41c1575 commit 06e5c29
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build_plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,21 +95,24 @@ jobs:
fi
- name: Create Release
uses: actions/create-release@v1
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
${{ env.GITHUB_REPOSITORY_NAME }} VCV Rack Plugin ${{ env.GITHUB_REF_NAME }}
draft: false
prerelease: false
draft: true
prerelease: true
- uses: actions/download-artifact@v2
with:
path: _artifacts
- name: Upload release assets
uses: svenstaro/upload-release-action@v2
with:
overwrite: true
prerelease: true
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: _artifacts/**/*.vcvplugin
tag: ${{ github.ref }}
Expand Down

0 comments on commit 06e5c29

Please sign in to comment.