From 996272e1080e5bb9338e03a8067db948dffe94e6 Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Wed, 7 Jun 2023 16:01:04 -0400 Subject: [PATCH] actions test 5 --- .github/workflows/manifest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/manifest.yml b/.github/workflows/manifest.yml index c36c721..79b9695 100644 --- a/.github/workflows/manifest.yml +++ b/.github/workflows/manifest.yml @@ -42,7 +42,7 @@ jobs: uses: actions/checkout@v3 with: ref: 'main' - clean: false + clean: 'false' - name: Generate manifest and shields for main branch id: manifest-main if: ${{ steps.checkout-main.outcome }} == 'success' @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@v3 with: ref: 'latest' - clean: false + clean: 'false' - name: Generate manifest for latest id: manifest-latest if: ${{ steps.checkout-latest.outcome }} == 'success' @@ -72,7 +72,7 @@ jobs: uses: actions/checkout@v3 with: ref: 'devel' - clean: false + clean: 'false' - name: Generate manifest for devel id: manifest-devel if: ${{ (success() || failure()) && steps.checkout-devel.outcome == 'success' }}