Skip to content

Commit

Permalink
Huh? Make it a little closer to the example
Browse files Browse the repository at this point in the history
  • Loading branch information
oskirby committed Nov 23, 2024
1 parent a73b658 commit eb0c7c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/taskcluster-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ inputs:

runs:
using: "composite"
env:
TASKGRAPH_TASK_URL: https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/${{ inputs.taskid }}
TASKGRAPH_ARTIFACT: public%2Fbuild%2F${{ inputs.artifact-name }}
steps:
- name: Wait for taskcluster job
id: taskgraph
Expand All @@ -30,6 +27,9 @@ runs:
- name: Download build artifact
shell: bash
env:
TASKGRAPH_TASK_URL: https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/${{ inputs.taskid }}
TASKGRAPH_ARTIFACT: public%2Fbuild%2F${{ inputs.artifact-name }}
run: |
curl -sSL -o ${{ inputs.path }}/${{ inputs.artifact-name }} \
${TASKGRAPH_TASK_URL}/runs/${{ steps.taskgraph.outputs.run-id }}/artifacts/${TASKGRAPH_ARTIFACT}

0 comments on commit eb0c7c1

Please sign in to comment.