workflow ready #4
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: Release Chrome Extension | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Extract Extension Version | |
id: package-version | |
run: | | |
VERSION=$(grep '"version":' public/manifest.json | cut -d'"' -f4) | |
echo "version=$VERSION" >> $GITHUB_OUTPUT | |
- name: Build extension | |
run: npm run build | |
- name: Create ZIP package | |
run: | | |
cd dist | |
zip -r porto-extension-v${{ steps.package-version.outputs.version }}.zip . | |
- name: Create GitHub Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: dist/porto-extension-v${{ steps.package-version.outputs.version }}.zip | |
tag_name: v${{ steps.package-version.outputs.version }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |