Compare commits

..
2 Commits
Author SHA1 Message Date
U-METAL103\103 f4674c8515 fuck you 2024-01-31 02:02:57 -06:00
U-METAL103\103 5a1877c715 work 2024-01-31 01:57:46 -06:00
+7 -6
View File
@@ -71,11 +71,12 @@ 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: test
run: ls -R
- name: Upload Release - name: Upload Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
@@ -83,7 +84,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 }}