fix: gh discussion version #33
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: Publish Browser Extension | |
on: | |
push: | |
branches: | |
- publish | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install | |
- name: Build extension | |
run: npm run prod | |
- name: Prepare source code zip | |
run: zip -r releases/save-my-phind_${{ github.run_number }}_firefox_source.zip src/ | |
# - name: Browser Platform Publish | |
# uses: PlasmoHQ/[email protected] | |
# with: | |
# keys: ${{ secrets.BPP_KEYS }} | |
- name: Get version from package.json | |
id: package_version | |
run: echo "::set-output name=version::$(node -p "require('./package.json').version")" | |
# - name: Create Tag | |
# run: git tag v${{ steps.package_version.outputs.version }} | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# | |
# - name: Push Tag | |
# run: git push origin v${{ steps.package_version.outputs.version }} | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Changelog | |
id: github_release | |
uses: mikepenz/release-changelog-builder-action@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
configurationJson: | | |
{ | |
"template": "#{{CHANGELOG}}\n\n**Full Changelog:** #{{RELEASE_DIFF}}", | |
"pr_template": "- #{{TITLE}} by @#{{AUTHOR}} in ##{{NUMBER}}", | |
"categories": [ | |
{ | |
"title": "## What's Changed" | |
} | |
] | |
} | |
# - name: Create Release | |
# id: create_release | |
# uses: actions/create-release@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# tag_name: v${{ steps.package_version.outputs.version }} | |
# release_name: ⏩ v${{ steps.package_version.outputs.version }} | |
# body: ${{ steps.github_release.outputs.changelog }} | |
# draft: false | |
# prerelease: false | |
# | |
## - name: Download CRX and XPI files | |
## run: | | |
## wget -O releases/save-my-phind_${{ steps.package_version.outputs.version }}_chrome.crx "https://clients2.google.com/service/update2/crx?response=redirect&prodversion=90.0.4430.212&acceptformat=crx2,crx3&x=id%3Dagklnagmfeooogcppjccdnoallkhgkod%26uc" | |
## | |
## - name: Upload Release Asset Chrome CRX | |
## uses: actions/upload-release-asset@v1 | |
## env: | |
## GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
## with: | |
## upload_url: ${{ steps.create_release.outputs.upload_url }} | |
## asset_path: ./releases/save-my-phind_${{ steps.package_version.outputs.version }}_chrome.crx | |
## asset_name: save-my-phind_${{ steps.package_version.outputs.version }}_chrome.crx | |
## asset_content_type: application/x-chrome-extension | |
## | |
## - name: Upload Release Asset Firefox XPI | |
## uses: actions/upload-release-asset@v1 | |
## env: | |
## GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
## with: | |
## upload_url: ${{ steps.create_release.outputs.upload_url }} | |
## asset_path: ./releases/save-my-phind_${{ steps.package_version.outputs.version }}_firefox.xpi | |
## asset_name: save-my-phind_${{ steps.package_version.outputs.version }}_firefox.xpi | |
## asset_content_type: application/x-xpinstall | |
# | |
# - name: Upload Release Asset Chrome | |
# uses: actions/upload-release-asset@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# upload_url: ${{ steps.create_release.outputs.upload_url }} | |
# asset_path: ./releases/save-my-phind_${{ steps.package_version.outputs.version }}_chrome.zip | |
# asset_name: save-my-phind_${{ steps.package_version.outputs.version }}_chrome.zip | |
# asset_content_type: application/zip | |
# | |
# - name: Upload Release Asset Firefox | |
# uses: actions/upload-release-asset@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# upload_url: ${{ steps.create_release.outputs.upload_url }} | |
# asset_path: ./releases/save-my-phind_${{ steps.package_version.outputs.version }}_firefox.zip | |
# asset_name: save-my-phind_${{ steps.package_version.outputs.version }}_firefox.zip | |
# asset_content_type: application/zip | |
- name: Create a new GitHub Discussion | |
uses: abirismyname/[email protected] | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
title: Release Discussion for v${{ steps.package_version.outputs.version }} | |
body: ${{ steps.github_release.outputs.changelog }} | |
repository-id: ${{ github.repository_id }} | |
category-id: Announcements |