Compare commits

..
3 Commits
96 .. 99
Author SHA1 Message Date
U-METAL103\103 5a1877c715 work 2024-01-31 01:57:46 -06:00
U-METAL103\103 cf5607f783 zip3 2024-01-31 01:48:54 -06:00
U-METAL103\103 a90f31540d zipwin 2024-01-31 01:34:00 -06:00
+3 -5
View File
@@ -71,10 +71,8 @@ jobs:
tag_name: ${{ github.run_number }} tag_name: ${{ github.run_number }}
body: ${{ github.event.head_commit.message }} body: ${{ github.event.head_commit.message }}
- name: testing - name: Zipping up Release folder
run: | run: Compress-Archive -Path "${{ github.workspace }}\Digital Clock\bin\Release\" -Destination Release.zip
zip -r Release.zip ${{ github.workspace }}\Digital Clock\bin\Release\
ls -R
- name: Upload Release - name: Upload Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
@@ -83,7 +81,7 @@ jobs:
prerelease: false prerelease: false
tag_name: ${{ github.run_number }} tag_name: ${{ github.run_number }}
body: ${{ github.event.head_commit.message }} body: ${{ github.event.head_commit.message }}
files: build/Release.zip files: ${{ github.workspace }}/Release.zip
env: env:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}