Skip to content

Commit b292d05

Browse files
committed
Compress the deployment package
1 parent 100b8af commit b292d05

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,11 @@ jobs:
9696
steps:
9797
- name: Checkout Code Repository
9898
uses: actions/checkout@v3
99-
- name: Archive deployment package
100-
uses: actions/upload-artifact@v4
101-
with:
102-
name: deployment-package
103-
path: deploy_package
99+
- name: Compress the deployment package
100+
run: tar czf deployment-package.tar.gz deploy_package
104101
- name: Release
105102
uses: fnkr/github-action-ghr@v1
106103
if: startsWith(github.ref, 'refs/tags/')
107104
env:
108-
GHR_COMPRESS: gz
109-
GHR_PATH: deploy_package/
105+
GHR_PATH: deployment-package.tar.gz
110106
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)