Skip to content

Commit

Permalink
Merge pull request #38
Browse files Browse the repository at this point in the history
merge release-deploy with master
  • Loading branch information
sssomeshhh authored Dec 3, 2022
2 parents ecd9405 + 95e1673 commit abdfd97
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 abdfd97

Please sign in to comment.