-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nuke cdk, update workflows to use shared action
- Loading branch information
1 parent
0a5b5ad
commit fc2c23b
Showing
9 changed files
with
24 additions
and
430 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by cdkactions. Do not modify | ||
# Generated as part of the 'website' stack. | ||
name: Build and Deploy | ||
on: push | ||
jobs: | ||
react-check-and-publish: | ||
name: React Check & Publish Frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: pennlabs/shared-actions/.github/workflows/react.yaml@main | ||
with: | ||
imageName: website | ||
githubRef: ${{ github.ref }} | ||
gitSha: ${{ github.sha }} | ||
deploy: | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/master' | ||
steps: | ||
- uses: pennlabs/shared-actions/.github/workflows/deployment.yaml@main | ||
with: | ||
githubRef: ${{ github.ref }} | ||
gitSha: ${{ github.sha }} | ||
needs: | ||
- react-check-and-publish |
Oops, something went wrong.