-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fed9ef
commit 10c0d64
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,11 +28,11 @@ jobs: | |
run: git config --global --add safe.directory '*' | ||
|
||
- name: Archiving Repository | ||
run: git archive -o ${{ github.event.repository.name }}-${{ github.ref_name }}.zip HEAD | ||
run: git archive --format=tar.gz -o ${{ github.event.repository.name }}-${{ inputs.tag }}.tar.gz HEAD | ||
|
||
- name: Upload Assets | ||
uses: softprops/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} | ||
with: | ||
files: ${{ github.event.repository.name }}-${{ github.ref_name }}.zip | ||
files: ${{ github.event.repository.name }}-${{ github.ref_name }}.tar.gz |