Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
47252f024f | ||
|
|
b752455524 | ||
|
|
8871ea4388 | ||
|
|
38cd5d17e8 | ||
|
|
0a2e4f5dbd | ||
|
|
7f4adaf758 | ||
|
|
1fdee7d04b |
@@ -19,8 +19,6 @@ env:
|
|||||||
# You can convert this to a build matrix if you need coverage of multiple configuration types.
|
# 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
|
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
||||||
BUILD_CONFIGURATION: Release
|
BUILD_CONFIGURATION: Release
|
||||||
MYID: id
|
|
||||||
MYURL: url
|
|
||||||
|
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
|
|
||||||
@@ -53,13 +51,19 @@ jobs:
|
|||||||
name: Release
|
name: Release
|
||||||
path: ${{ github.workspace }}\Digital Clock\bin\Release\*
|
path: ${{ github.workspace }}\Digital Clock\bin\Release\*
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
run: |
|
||||||
|
echo "MYID=${{ steps.artifact-upload-step.outputs.artifact-id }}"
|
||||||
|
echo "MYURL=${{ steps.artifact-upload-step.outputs.artifact-url }}"
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
MYID: ${{ steps.artifact-upload-step.outputs.artifact-id }}
|
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: Output MYURL
|
- name: Output Artifact MYURL
|
||||||
run: echo 'Artifact URL is ${{ env.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
|
- 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 }}'
|
run: echo 'Artifact URL is ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }}'
|
||||||
|
|||||||
Reference in New Issue
Block a user