Compare commits

...
1 Commits
98 ... 99
Author SHA1 Message Date
U-METAL103\103 5a1877c715 work 2024-01-31 01:57:46 -06:00
+4 -6
View File
@@ -71,11 +71,9 @@ 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
Compress-Archive -Path "${{ github.workspace }}\Digital Clock\bin\Release\" -Destination Release.zip
ls -R
- name: Upload Release - name: Upload Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
@@ -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 }}