Skip to content

Commit

Permalink
fix: change artifact download action
Browse files Browse the repository at this point in the history
  • Loading branch information
amalv committed Jan 18, 2024
1 parent 998ff42 commit eaf3f39
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@ jobs:
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
https://api.github.com/repos/${{ github.repository }}/actions/artifacts
- name: Download deploy URL
uses: actions/download-artifact@v4
id: download-artifact
uses: dawidd6/action-download-artifact@v3
with:
name: deploy-url
github-token: ${{ secrets.GH_PAT }}
workflow: "deploy_staging.yml"
workflow_conclusion: "success"
name: "deploy-url"
- name: Set deploy URL
id: url
run: echo "::set-output name=DEPLOY_URL::$(cat deploy-url.txt)"
Expand Down

1 comment on commit eaf3f39

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.