Compare commits

..
11 Commits
39 .. 50
Author SHA1 Message Date
U-METAL103\103 93f3a68635 test1 2024-01-28 21:41:32 -06:00
U-METAL103\103 b1119b9b71 blah stupid env 2024-01-28 20:58:31 -06:00
U-METAL103\103 5837e624ac blah stupid vars 2024-01-28 20:54:49 -06:00
U-METAL103\103 c6553de241 env.myid 2024-01-28 20:50:17 -06:00
U-METAL103\103 70041ea629 ....iiiidddd 2024-01-28 19:44:21 -06:00
U-METAL103\103 2d639169ae iiidddd 2024-01-28 19:42:00 -06:00
U-METAL103\103 7d79c9c04b FUCK!!!!!!!! 2024-01-28 13:48:35 -06:00
U-METAL103\103 01cee9687e 111111111 2024-01-28 13:44:25 -06:00
U-METAL103\103 316465e293 0000000000 2024-01-28 13:32:44 -06:00
U-METAL103\103 c308df1578 !!!!!!!!!!! 2024-01-28 13:12:21 -06:00
U-METAL103\103 29bde69ab4 ==D~~~~~~~~~~~~~ 2024-01-28 13:01:27 -06:00
2 changed files with 24 additions and 10 deletions
+21 -7
View File
@@ -45,13 +45,31 @@ jobs:
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: published name: Release
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 retention-days: 1
env: env:
MYID: ${{ steps.artifact-upload-step.outputs.artifact-id }}
MYURL: ${{ steps.artifact-upload-step.outputs.artifact-url }} MYURL: ${{ steps.artifact-upload-step.outputs.artifact-url }}
- name: release - name: Output artifact URL test1
run: echo 'Artifact URL is ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }}'
- name: Output artifact URL test2
run: echo 'Artifact URL is ${{ steps.artifact-upload-step.outputs.artifact-url }}'
- name: Output artifact ID
run: echo 'Artifact ID is ${{ env.MYID }}'
- name: Output artifact URL env
run: echo 'Artifact URL is ${{ env.MYURL }}'
##- name: Get Artifact URL
## run: echo "::set-output name=artifact_url::https://github.com/ELY3M/suites/$GITHUB_RUN_ID/artifacts/Release.zip"
- name: Create Release
uses: actions/create-release@latest uses: actions/create-release@latest
env: env:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}
@@ -67,10 +85,7 @@ jobs:
env: env:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}
with: with:
upload_url: ${MYURL} upload_url: ${{ env.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
@@ -85,4 +100,3 @@ jobs:
View File