actions test 5

This commit is contained in:
Mikayla Fischler 2023-06-07 16:01:04 -04:00
parent ef673bdf1b
commit 996272e108

View File

@ -42,7 +42,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
ref: 'main' ref: 'main'
clean: false clean: 'false'
- name: Generate manifest and shields for main branch - name: Generate manifest and shields for main branch
id: manifest-main id: manifest-main
if: ${{ steps.checkout-main.outcome }} == 'success' if: ${{ steps.checkout-main.outcome }} == 'success'
@ -57,7 +57,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
ref: 'latest' ref: 'latest'
clean: false clean: 'false'
- name: Generate manifest for latest - name: Generate manifest for latest
id: manifest-latest id: manifest-latest
if: ${{ steps.checkout-latest.outcome }} == 'success' if: ${{ steps.checkout-latest.outcome }} == 'success'
@ -72,7 +72,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
ref: 'devel' ref: 'devel'
clean: false clean: 'false'
- name: Generate manifest for devel - name: Generate manifest for devel
id: manifest-devel id: manifest-devel
if: ${{ (success() || failure()) && steps.checkout-devel.outcome == 'success' }} if: ${{ (success() || failure()) && steps.checkout-devel.outcome == 'success' }}