Skip to content

Commit

Permalink
Make CI auto-package the plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
noDRM committed Nov 17, 2021
1 parent 1b391da commit 05e0d0b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 05e0d0b

Please sign in to comment.