v10.8.1 #75
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: Extension | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'tampermonkey/manifest.json' | |
jobs: | |
build: | |
name: build extension | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '19' | |
- name: Update npm | |
run: npm update | |
- name: Build and release | |
run: npm run chrome | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bilibili-old | |
path: dist/**/* | |
retention-days: 30 |