save a bottle

This commit is contained in:
Jacob Heider 2022-11-29 15:55:59 -05:00 committed by Jacob Heider
parent 710f27d2c8
commit 298cf2b499

View file

@ -154,6 +154,7 @@ jobs:
bottle: bottle:
needs: [test, build] needs: [test, build]
if: ${{ inputs.upload }}
runs-on: ${{ matrix.platform.os }} runs-on: ${{ matrix.platform.os }}
defaults: defaults:
run: run:
@ -203,7 +204,6 @@ jobs:
- name: upload bottles - name: upload bottles
id: upload id: upload
if: ${{ inputs.upload }}
run: scripts/upload.ts run: scripts/upload.ts
--pkgs ${{ needs.build.outputs.built }} ${{ needs.build.outputs.built }} --pkgs ${{ needs.build.outputs.built }} ${{ needs.build.outputs.built }}
--srcs ${{ needs.build.outputs.srcs }} ${{ needs.build.outputs.srcs }} --srcs ${{ needs.build.outputs.srcs }} ${{ needs.build.outputs.srcs }}
@ -217,7 +217,6 @@ jobs:
#NOTE ideally wed invalidate all at once so this is atomic #NOTE ideally wed invalidate all at once so this is atomic
# however GHA cant consolidate outputs from a matrix :/ # however GHA cant consolidate outputs from a matrix :/
- uses: chetan/invalidate-cloudfront-action@v2 - uses: chetan/invalidate-cloudfront-action@v2
if: ${{ inputs.upload }}
env: env:
PATHS: ${{ steps.upload.outputs.cf-invalidation-paths }} PATHS: ${{ steps.upload.outputs.cf-invalidation-paths }}
DISTRIBUTION: ${{ secrets.AWS_CF_DISTRIBUTION_ID }} DISTRIBUTION: ${{ secrets.AWS_CF_DISTRIBUTION_ID }}
@ -227,7 +226,7 @@ jobs:
notify: notify:
if: always() if: always()
needs: [bottle] needs: [test, build, bottle]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: martialonline/workflow-status@v3 - uses: martialonline/workflow-status@v3