Skip to content

Commit

Permalink
Fix cd (#27)
Browse files Browse the repository at this point in the history
* Fix needs constraints

* Rename data job
  • Loading branch information
joseph-flinn authored Aug 14, 2023
1 parent 79bd9c5 commit e34d364
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-n-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,10 @@ jobs:
deploy-frontend:
name: Deploy Frontend
if: ${{ needs.setup.outputs.frontend-changed == 'true' }}
needs: [setup]
runs-on: ubuntu-latest
needs: build-frontend
needs:
- setup
- build-frontend
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
Expand All @@ -74,7 +75,7 @@ jobs:
uses: actions/[email protected]


build-data:
build-n-deploy-data:
name: Build Data
if: ${{ needs.setup.outputs.data-changed == 'true' }}
needs: [setup]
Expand Down

0 comments on commit e34d364

Please sign in to comment.