Make CI auto-package the plugin
This commit is contained in:
parent
1b391da815
commit
05e0d0bedb
|
@ -0,0 +1,19 @@
|
||||||
|
name: Package plugin
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
package:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Package
|
||||||
|
run: python3 make_release.py 10.0.0
|
||||||
|
- name: Upload
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: plugin
|
||||||
|
path: |
|
||||||
|
DeDRM_tools_*.zip
|
Loading…
Reference in New Issue