Merge pull request #36 from matagus/fix-release-and-publish-action #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Draft Release | ||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
- draft: true | ||
Check failure on line 18 in .github/workflows/release.yml GitHub Actions / Create Draft ReleaseInvalid workflow file
|
||
- allowUpdates: true | ||
- generateReleaseNotes: true |