Skip to content

Commit

Permalink
s/worfklow_run/workflow_run/g
Browse files Browse the repository at this point in the history
Fixes: 242dde2
  • Loading branch information
evgeni committed Jan 17, 2025
1 parent 60efa1c commit 89c5b56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download metadata artifact
run: gh run download '${{ github.event.worfklow_run.id }}' -n pr
run: gh run download '${{ github.event.workflow_run.id }}' -n pr

- name: Unzip artifact
run: unzip pr.zip
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download metadata artifact
run: gh run download '${{ github.event.worfklow_run.id }}' -n pr
run: gh run download '${{ github.event.workflow_run.id }}' -n pr

- name: Unzip artifact
run: unzip pr.zip
Expand All @@ -45,7 +45,7 @@ jobs:
run: echo "PR_DATA=$(cat ./pr.json)" >> $GITHUB_ENV

- name: Download other artifacts
run: gh run download '${{ github.event.worfklow_run.id }}' -n 'foreman-docs-html-${{ fromJSON(env.PR_DATA).branch_name }}' -n foreman-docs-html-base -n foreman-docs-web-master
run: gh run download '${{ github.event.workflow_run.id }}' -n 'foreman-docs-html-${{ fromJSON(env.PR_DATA).branch_name }}' -n foreman-docs-html-base -n foreman-docs-web-master

- name: Set preview domain
run: echo "PREVIEW_DOMAIN=$(echo ${{ github.repository }} | tr / - )-${{ github.job }}-pr-${{ fromJSON(env.PR_DATA).pr_number }}.surge.sh" >> $GITHUB_ENV
Expand Down

0 comments on commit 89c5b56

Please sign in to comment.