Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/cdk/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions .github/cdk/cdkactions.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/cdk/main.ts

This file was deleted.

25 changes: 0 additions & 25 deletions .github/cdk/package.json

This file was deleted.

33 changes: 0 additions & 33 deletions .github/cdk/tsconfig.json

This file was deleted.

216 changes: 0 additions & 216 deletions .github/cdk/yarn.lock

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/build-and-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# ========================================
# Note: If you make changes to this CI/CD, please include someone from DevOps in the list of reviewers for the PR.
# ========================================
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/[email protected]
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/[email protected]
with:
githubRef: ${{ github.ref }}
gitSha: ${{ github.sha }}
needs:
- react-check-and-publish
Loading