Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6915a4f171 | ||
|
|
2d2eaf6a21 | ||
|
|
792fbc419e | ||
|
|
af4864454d | ||
|
|
3d7afbc88a | ||
|
|
c64bc17dc2 | ||
|
|
289770a12d | ||
|
|
f220333f17 | ||
|
|
ab2ce11105 |
@@ -19,6 +19,8 @@ env:
|
||||
# You can convert this to a build matrix if you need coverage of multiple configuration types.
|
||||
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
||||
BUILD_CONFIGURATION: Release
|
||||
MYID: id
|
||||
MYURL: url
|
||||
|
||||
permissions: write-all
|
||||
|
||||
@@ -42,16 +44,19 @@ jobs:
|
||||
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
|
||||
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
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Release
|
||||
path: D:\a\Digital-Clock-in-sharpc\Digital-Clock-in-sharpc\Digital Clock\bin\Release\*
|
||||
path: ${{ github.workspace }}\Digital Clock\bin\Release\*
|
||||
retention-days: 1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
MYID: ${{ env.artifact-id }} ##${{ steps.artifact-upload-step.outputs.artifact-id }}
|
||||
MYURL: ${{ env.artifact-url }} ##${{ steps.artifact-upload-step.outputs.artifact-url }}
|
||||
MYID: ${{ steps.artifact-upload-step.outputs.artifact-id }}
|
||||
MYURL: ${{ steps.artifact-upload-step.outputs.artifact-url }}
|
||||
|
||||
- name: Output MYURL
|
||||
run: echo 'Artifact URL is ${{ env.MYURL }}'
|
||||
|
||||
Reference in New Issue
Block a user