Skip to content

Commit

Permalink
github-release.yml - add deploy-package step
Browse files Browse the repository at this point in the history
  • Loading branch information
sssomeshhh committed Dec 3, 2022
1 parent ecd9405 commit 95e1673
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,26 @@ jobs:
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

deploy-package:
runs-on: ubuntu-latest
needs: [create-release]
steps:
- name: Checkout Repo
id: checkout_repo
uses: actions/checkout@v3
with:
submodules: recursive

- name: Create Package
id: create_package
run: |
rm -rvf ./deploy/.git*
tar -cvf deploy.tar deploy
- name: Upload Package
id: upload_package
uses: softprops/action-gh-release@v1
with:
files: |
deploy.tar

0 comments on commit 95e1673

Please sign in to comment.