Compare commits

..
4 Commits
35 .. 39
Author SHA1 Message Date
U-METAL103\103 5d305896b8 =======================D 2024-01-28 12:42:10 -06:00
U-METAL103\103 75d35b75ee eat penis 2024-01-28 12:38:53 -06:00
U-METAL103\103 8eb8cea50c fucking urls 2024-01-28 11:27:58 -06:00
U-METAL103\103 45fcfcbc43 blah 2024-01-28 10:44:39 -06:00
+16 -6
View File
@@ -47,6 +47,9 @@ jobs:
with: with:
name: published name: published
path: D:\a\Digital-Clock-in-sharpc\Digital-Clock-in-sharpc\Digital Clock\bin\Release\* path: D:\a\Digital-Clock-in-sharpc\Digital-Clock-in-sharpc\Digital Clock\bin\Release\*
retention-days: 1
env:
MYURL: ${{ steps.artifact-upload-step.outputs.artifact-url }}
- name: release - name: release
uses: actions/create-release@latest uses: actions/create-release@latest
@@ -58,21 +61,28 @@ jobs:
release_name: ${{ steps.version.outputs.version }} release_name: ${{ steps.version.outputs.version }}
tag_name: ${{ github.run_number }} tag_name: ${{ github.run_number }}
body: ${{ github.event.head_commit.message }} body: ${{ github.event.head_commit.message }}
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${MYURL}
asset_path: ${{ steps.extract.outputs.destination }}
asset_name: ${{ steps.extract.outputs.destination }}
asset_content_type: application/zip
- name: Upload Release - name: Upload Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
draft: false draft: false
prerelease: false prerelease: false
release_name: ${{ steps.version.outputs.version }}
tag_name: ${{ github.run_number }} tag_name: ${{ github.run_number }}
body: ${{ github.event.head_commit.message }} body: ${{ github.event.head_commit.message }}
files: D:\a\Digital-Clock-in-sharpc\Digital-Clock-in-sharpc\Digital Clock\bin\Release\* files: D:\a\Digital-Clock-in-sharpc\Digital-Clock-in-sharpc\Digital Clock\bin\Release\*
env: env:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}