chore: auto-draft release #105
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: REL | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
manifest: | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.extract.outputs.version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: extract | |
working-directory: ./workspace/extension/static | |
run: echo version=$(jq -r '.version' manifest.json) >> $GITHUB_OUTPUT | |
bundle: | |
runs-on: ubuntu-latest | |
needs: manifest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- run: pnpm install | |
- working-directory: ./workspace/extension | |
run: pnpm build && cd build && zip -r svelte-devtools * | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: extension-${{ github.sha }} | |
path: workspace/extension/build/svelte-devtools.zip | |
- if: | | |
github.repository == 'sveltejs/svelte-devtools' | |
# github.event_name == 'push' && github.ref == 'refs/heads/master' && | |
# github.event.head_commit.message == '~ v${{ needs.manifest.outputs.version }}' | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | # https://cli.github.com/manual/gh_release_create | |
gh release create v3.0.0 \ | |
workspace/extension/build/svelte-devtools.zip \ | |
--title 3.0.0 \ | |
--draft --generate-notes --notes ' | |
**Full Changelog**: https://github.com/sveltejs/svelte-devtools/compare/$(gh release list --exclude-drafts --json tagName --jq .[0].tagName)...v${{ needs.manifest.outputs.version }} | |
Built from ${{ github.event.head_commit.id }} at https://github.com/sveltejs/svelte-devtools/actions/runs/${{ github.run_id }} | |
- Chrome Web Store: https://chrome.google.com/webstore/detail/svelte-devtools/kfidecgcdjjfpeckbblhmfkhmlgecoff | |
- Firefox Signed Add-on: https://github.com/sveltejs/svelte-devtools/releases/download/v${{ needs.manifest.outputs.version }}/svelte-devtools.xpi | |
--- | |
' | |
# publish: | |
# runs-on: ubuntu-latest | |
# needs: bundle | |
# steps: | |
# - uses: actions/download-artifact@v3 | |
# with: | |
# name: extension-${{ github.sha }} |