Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b752455524 | ||
|
|
8871ea4388 | ||
|
|
38cd5d17e8 | ||
|
|
0a2e4f5dbd | ||
|
|
7f4adaf758 | ||
|
|
1fdee7d04b | ||
|
|
6915a4f171 | ||
|
|
2d2eaf6a21 | ||
|
|
792fbc419e | ||
|
|
af4864454d | ||
|
|
3d7afbc88a | ||
|
|
c64bc17dc2 | ||
|
|
289770a12d | ||
|
|
f220333f17 | ||
|
|
ab2ce11105 | ||
|
|
1f6be4c9fd | ||
|
|
b9740d9828 | ||
|
|
05e81b5874 | ||
|
|
879ae06ed7 | ||
|
|
7e32931c23 | ||
|
|
1eadd44e03 | ||
|
|
7b31213fd9 | ||
|
|
6f17849031 | ||
|
|
93f3a68635 | ||
|
|
b1119b9b71 | ||
|
|
5837e624ac | ||
|
|
c6553de241 | ||
|
|
70041ea629 | ||
|
|
2d639169ae | ||
|
|
7d79c9c04b | ||
|
|
01cee9687e | ||
|
|
316465e293 | ||
|
|
c308df1578 | ||
|
|
29bde69ab4 | ||
|
|
5d305896b8 | ||
|
|
75d35b75ee | ||
|
|
8eb8cea50c | ||
|
|
45fcfcbc43 | ||
|
|
47311a2513 | ||
|
|
1297c6ae9b | ||
|
|
13d948ac3b | ||
|
|
c0d1471e60 | ||
|
|
e6a4608999 | ||
|
|
590150e80c | ||
|
|
2ba1091027 | ||
|
|
569467f43f | ||
|
|
a536d68d40 | ||
|
|
da59fce84a | ||
|
|
8ef6b42bc6 | ||
|
|
34abc64ed0 |
+45
-22
@@ -42,12 +42,34 @@ jobs:
|
|||||||
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
|
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
|
||||||
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
|
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
|
||||||
|
|
||||||
|
- name: Show Github infos
|
||||||
|
run: echo 'Workspace path ${{ github.workspace }}' ##D:\a\Digital-Clock-in-sharpc\Digital-Clock-in-sharpc
|
||||||
|
|
||||||
- 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: ${{ github.workspace }}\Digital Clock\bin\Release\*
|
||||||
- name: release
|
retention-days: 1
|
||||||
|
run: |
|
||||||
|
echo "MYID: ${{ steps.artifact-upload-step.outputs.artifact-id }}"
|
||||||
|
echo "MYURL: ${{ steps.artifact-upload-step.outputs.artifact-url }}"
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
MYID: ${{ steps.artifact-upload-step.outputs.artifact-id }}
|
||||||
|
MYURL: ${{ steps.artifact-upload-step.outputs.artifact-url }}
|
||||||
|
|
||||||
|
- name: Output Artifact MYURL
|
||||||
|
run: echo 'Artifact URL is ${{ steps.artifact-upload-step.outputs.artifact-url }}'
|
||||||
|
|
||||||
|
- name: Output env.MYURL
|
||||||
|
run: echo 'Artifact URL is ${{ env.MYURL }}'
|
||||||
|
|
||||||
|
- 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: Create Release
|
||||||
uses: actions/create-release@latest
|
uses: actions/create-release@latest
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
@@ -55,25 +77,26 @@ jobs:
|
|||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
release_name: ${{ steps.version.outputs.version }}
|
release_name: ${{ steps.version.outputs.version }}
|
||||||
tag_name: ${{ github.event.head_commit.message }}
|
tag_name: ${{ github.run_number }}
|
||||||
body_path: ${{ github.event.head_commit.message }}
|
body: ${{ github.event.head_commit.message }}
|
||||||
- name: Dump vars context
|
|
||||||
run: echo ${{ toJSON(vars) }}
|
- name: Upload Release Asset
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ env.MYURL }}
|
||||||
|
|
||||||
|
- name: Upload Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
tag_name: ${{ github.run_number }}
|
||||||
|
body: ${{ github.event.head_commit.message }}
|
||||||
|
files: D:\a\Digital-Clock-in-sharpc\Digital-Clock-in-sharpc\Digital Clock\bin\Release\*
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user