Skip to content

Commit

Permalink
add production docker compose deploy to releases
Browse files Browse the repository at this point in the history
  • Loading branch information
s4ke committed May 28, 2023
1 parent b8a0235 commit 19c46e1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,19 @@ jobs:
- name: "zip deploy/local folder"
run: |
cd deploy
zip -r deploy-local-2.1.0-beta.zip local/
cd deploy/local
zip -r deploy-local-2.1.0-beta.zip ./
- name: "zip deploy/production folder"
run: |
cd deploy/production/docker-compose
zip -r deploy-production-docker-compose-2.1.0-beta.zip ./
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
./client/dist/compose_client-2.1.0-beta.tar.gz
deploy/deploy-local-2.1.0-beta.zip
deploy/local/deploy-local-2.1.0-beta.zip
deploy/production/docker-compose/deploy-production-docker-compose-2.1.0-beta.zip

0 comments on commit 19c46e1

Please sign in to comment.