Bump version 1.2.8 (#103)
#13
Workflow file for this run
This file contains hidden or 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: Release on Tag | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| # call workflow to sign the plugin first | |
| sign_plugin: | |
| name: Sign Plugin | |
| uses: ./.github/workflows/sign-extension.yml | |
| secrets: inherit | |
| # create release then | |
| create_release: | |
| name: Create GitHub Release | |
| runs-on: ubuntu-latest | |
| needs: sign_plugin | |
| steps: | |
| - name: Download Signed Plugin Artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: plainly-plugin | |
| path: . | |
| - name: Rename Artifact with Version | |
| run: | | |
| mv plainly-plugin.zxp plainly-plugin-${{ github.ref_name }}.zxp | |
| - name: Create a Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| draft: false | |
| prerelease: false | |
| files: | | |
| plainly-plugin-${{ github.ref_name }}.zxp |