v0.9 #13
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: Post Release | |
on: | |
release: | |
types: [released] | |
jobs: | |
create-issues: | |
name: Create GitHub Issues | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- run: | | |
gh issue create --title "Publish Windows Release for $RELEASE_TAG" --body "Update json file in root of project." | |
gh issue create --title "Publish Flatpak Release for $RELEASE_TAG" --body "Update https://github.com/flathub/com.github.dail8859.NotepadNext" | |
gh issue create --title "Publish Homebrew Release for $RELEASE_TAG" --body "Update https://github.com/dail8859/homebrew-notepadnext/blob/master/Casks/notepadnext.rb with release number and DMG sha256" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
RELEASE_TAG: ${{ github.event.release.tag_name }} | |
winget: | |
name: Publish to WinGet | |
runs-on: ubuntu-latest | |
steps: | |
- uses: vedantmgoyal2009/winget-releaser@v2 | |
with: | |
identifier: dail8859.NotepadNext | |
token: ${{ secrets.WINGET_TOKEN }} |