-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix needs constraints * Rename data job
- Loading branch information
1 parent
79bd9c5
commit e34d364
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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] | ||
|