Skip to content

Commit 8ee3311

Browse files
committed
Fix path of prevent-rerun action and ensure checkout is done before it.
1 parent 21c81c1 commit 8ee3311

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/create-release.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ jobs:
516516
.github
517517
518518
- name: Prevent Re-run
519-
uses: ./.github/actions/prevent-rerun
519+
uses: ./.github/workflows/actions/prevent-rerun
520520

521521
- uses: actions/download-artifact@v4
522522
with:
@@ -561,7 +561,7 @@ jobs:
561561
.github
562562
563563
- name: Prevent Re-run
564-
uses: ./quarto-cli/.github/actions/prevent-rerun
564+
uses: ./quarto-cli/.github/workflows/actions/prevent-rerun
565565

566566
- name: Download Artifacts
567567
uses: actions/download-artifact@v4
@@ -663,11 +663,11 @@ jobs:
663663
]
664664
runs-on: ubuntu-latest
665665
steps:
666-
- name: Prevent Re-run
667-
uses: ./.github/actions/prevent-rerun
668-
669666
- uses: actions/checkout@v4
670667

668+
- name: Prevent Re-run
669+
uses: ./.github/workflows/actions/prevent-rerun
670+
671671
- name: Revert commit of version.txt
672672
if: ${{ needs.configure.outputs.pushed }}
673673
run: |
@@ -690,13 +690,18 @@ jobs:
690690
runs-on: ubuntu-latest
691691
needs: [configure, publish-release]
692692
steps:
693+
- uses: actions/checkout@v4
694+
with:
695+
sparse-checkout: |
696+
.github
697+
693698
- name: Prevent Re-run
694-
uses: ./.github/actions/prevent-rerun
699+
uses: ./.github/workflows/actions/prevent-rerun
695700

696701
- name: Download Artifacts
697702
uses: actions/download-artifact@v4
698703

699-
- uses: quarto-dev/quarto-cli/.github/actions/docker@main
704+
- uses: ./.github/actions/docker
700705
with:
701706
source: ./Deb Installer/quarto-${{needs.configure.outputs.version}}-linux-amd64.deb
702707
version: ${{needs.configure.outputs.version}}

0 commit comments

Comments
 (0)