actions testing

This commit is contained in:
Mikayla Fischler 2023-06-07 15:43:03 -04:00
parent 86325d9527
commit c05a312f6c

View File

@ -73,12 +73,16 @@ jobs:
with: with:
ref: 'devel' ref: 'devel'
clean: false clean: false
- name: test
run: echo ${{ steps.checkout-devel.success }}
- name: test2
run: echo ${{ steps.checkout-devel.outcome }}
- name: Generate manifest for devel - name: Generate manifest for devel
id: manifest-devel id: manifest-devel
if: (success() || failure()) && ${{ steps.checkout-devel.success }} if: (always()) && ${{ steps.checkout-devel.success }}
run: python imgen.py run: python imgen.py
- name: Save devel's manifest - name: Save devel's manifest
if: ${{ steps.manifest-devel.success }} if: ${{ steps.checkout-devel.success }}
run: mv install_manifest.json deploy/manifests/devel run: mv install_manifest.json deploy/manifests/devel
# All artifacts ready now, upload deploy directory # All artifacts ready now, upload deploy directory
- name: Upload artifacts - name: Upload artifacts