We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03c612e commit 0ceaa27Copy full SHA for 0ceaa27
.github/workflows/adev-preview-deploy.yml
@@ -25,10 +25,12 @@ jobs:
25
runs-on: ubuntu-latest
26
if: ${{ github.event.workflow_run.conclusion == 'success' }}
27
steps:
28
- - uses: actions/download-artifact@v4
+ - name: Download adev preview artifact from previous workflow run
29
+ uses: actions/download-artifact@v4
30
with:
- github-token: '${{secrets.GITHUB_TOKEN}}'
31
name: adev-preview
32
+ github-token: '${{secrets.GITHUB_TOKEN}}'
33
+ run-id: ${{ github.event.workflow_run.id }}
34
- run: ls -R
35
- name: Extract pull request number
36
run: |
0 commit comments