v0.5.0 #37
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: Release Plugins | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
paths-ignore: | |
- 'README.md' | |
- 'wiki/**' | |
- 'public/**' | |
- 'scripts/**' | |
- '.vscode' | |
- '.idea' | |
pull_request: | |
branches: | |
- master | |
- main | |
paths-ignore: | |
- 'README.md' | |
- 'wiki/**' | |
- 'public/**' | |
- '.scripts/**' | |
- '.vscode' | |
- '.idea' | |
concurrency: | |
group: release-ci-group | |
cancel-in-progress: true | |
jobs: | |
Plugins: | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: '18' | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
**/node_modules | |
~/.pnpm-store | |
~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
${{ runner.os }}-node- | |
- name: Install Dependencies | |
run: npm install -g pnpm && pnpm install | |
- name: Build Plugins | |
run: pnpm run build | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
dist/*.json | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |