diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 819f5be..9a3800d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,10 +52,16 @@ jobs: MYID: ${{ steps.artifact-upload-step.outputs.artifact-id }} MYURL: ${{ steps.artifact-upload-step.outputs.artifact-url }} + - 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: Output artifact URL test2 + run: echo 'Artifact URL is ${{ steps.artifact-upload-step.outputs.artifact-url }}' + - name: Output artifact ID run: echo 'Artifact ID is ${{ env.MYID }}' - - name: Output artifact URL + - name: Output artifact URL env run: echo 'Artifact URL is ${{ env.MYURL }}'