Skip to content

Commit

Permalink
Add Github Action to auto upload release file
Browse files Browse the repository at this point in the history
  • Loading branch information
celeron533 committed Feb 14, 2021
1 parent 052b1aa commit 43b29dd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Pack output files

on:
push:
tags:
- 'v*'

jobs:
upload:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: zip output folder
run: |
cd output
zip -r output.zip *
- name: upload to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: output/output.zip
tag: ${{ github.ref }}
prerelease: true

0 comments on commit 43b29dd

Please sign in to comment.