chore: bump version to v0.2.0 #97
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: 'Build Plugin' | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: ELECTRON_SKIP_BINARY_DOWNLOAD=1 npm install -g yarn && yarn install | |
- name: Build plugin | |
run: yarn plugin-build | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: LiteLoaderQQNT-NekoImage.zip | |
path: LiteLoaderQQNT-NekoImage | |
- name: Pack plugin for releases | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
run: zip -r LiteLoaderQQNT-NekoImage.zip LiteLoaderQQNT-NekoImage | |
- name: Create GitHub Release | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: >- | |
gh release create | |
'${{ github.ref_name }}' | |
--repo '${{ github.repository }}' | |
--notes "" | |
- name: Upload artifact signatures to GitHub Release | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: >- | |
gh release upload | |
'${{ github.ref_name }}' LiteLoaderQQNT-NekoImage.zip | |
--repo '${{ github.repository }}' |