Skip to content

Commit

Permalink
ci: add auto-build-plugin workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pk5ls20 committed Apr 30, 2024
1 parent e2ea409 commit a1c62f6
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build_plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: 'Build Plugin'
on:
push:

jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18

- name: Install dependencies
run: |
export ELECTRON_SKIP_BINARY_DOWNLOAD=1
npm install -g yarn && yarn install
- name: Build plugin
run: yarn plugin-build

- name: Pack plugin
run: |
sudo apt install zip -y
zip -r LiteLoaderQQNT-NekoImage.zip LiteLoaderQQNT-NekoImage
- uses: actions/upload-artifact@v4
with:
name: LiteLoaderQQNT-NekoImage.zip
path: LiteLoaderQQNT-NekoImage.zip

0 comments on commit a1c62f6

Please sign in to comment.