We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 100b8af commit b292d05Copy full SHA for b292d05
.github/workflows/ci.yml
@@ -96,15 +96,11 @@ jobs:
96
steps:
97
- name: Checkout Code Repository
98
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
+ - name: Compress the deployment package
+ run: tar czf deployment-package.tar.gz deploy_package
104
- name: Release
105
uses: fnkr/github-action-ghr@v1
106
if: startsWith(github.ref, 'refs/tags/')
107
env:
108
- GHR_COMPRESS: gz
109
- GHR_PATH: deploy_package/
+ GHR_PATH: deployment-package.tar.gz
110
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments