From 7f4adaf758fb6484e3bc5faf0b6daeca618c2dfe Mon Sep 17 00:00:00 2001 From: "U-METAL103\\103" Date: Tue, 30 Jan 2024 15:01:05 -0600 Subject: [PATCH] .... --- .github/workflows/build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7494831..f86d00e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,8 +19,6 @@ 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: ${{ steps.artifact-upload-step.outputs.artifact-id }} - MYURL: ${{ steps.artifact-upload-step.outputs.artifact-url }} permissions: write-all @@ -58,9 +56,16 @@ jobs: 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 MYURL + run: echo 'Artifact URL is ${{ MYURL }}' + + - 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 }}'