Compare commits

...
7 Commits
67 ... 74
Author SHA1 Message Date
U-METAL103\103 47252f024f echo2 2024-01-30 17:29:52 -06:00
U-METAL103\103 b752455524 echo1 2024-01-30 17:22:48 -06:00
U-METAL103\103 8871ea4388 vars-save-pls 2024-01-30 17:14:08 -06:00
U-METAL103\103 38cd5d17e8 vars 2024-01-30 15:25:09 -06:00
U-METAL103\103 0a2e4f5dbd 1 2024-01-30 15:02:12 -06:00
U-METAL103\103 7f4adaf758 .... 2024-01-30 15:01:05 -06:00
U-METAL103\103 1fdee7d04b github cant remember anything 2024-01-30 14:56:05 -06:00
+8 -4
View File
@@ -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 }}'