-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- pushed all deps to latest - removed frontend slices in favour of backend state - added new page for guiding the login flow - fixed a couple of bugs in degree wizard - improved caching on graphical selector - used a more generic antd theme instead of our highly custom one
- Loading branch information
1 parent
e996e57
commit a5e25f1
Showing
235 changed files
with
974,059 additions
and
331,948 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 |
---|---|---|
|
@@ -58,23 +58,24 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: csesoc/deployment | ||
token: ${{ secrets.GH_TOKEN }} | ||
ref: migration | ||
- name: Install yq - portable yaml processor | ||
uses: mikefarah/yq@v4.27.5 | ||
uses: mikefarah/yq@v4.35.2 | ||
- name: Update deployment | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
run: | | ||
git config user.name "CSESoc CD" | ||
git config user.email "[email protected]" | ||
git checkout -b update/circles/${{ github.sha }} | ||
yq -i '.items[0].spec.template.spec.containers[0].image = "ghcr.io/csesoc/circles-frontend:${{ github.sha }}"' apps/projects/circles/deploy-frontend.yml | ||
yq -i '.items[0].spec.template.spec.containers[0].image = "ghcr.io/csesoc/circles-backend:${{ github.sha }}"' apps/projects/circles/deploy-backend.yml | ||
yq -i '.items[0].spec.template.spec.containers[0].image = "ghcr.io/csesoc/circles-frontend:${{ github.sha }}"' projects/circles/deploy-frontend.yml | ||
yq -i '.items[0].spec.template.spec.containers[0].image = "ghcr.io/csesoc/circles-backend:${{ github.sha }}"' projects/circles/deploy-backend.yml | ||
git add . | ||
git commit -m "feat(circles): update images" | ||
git push -u origin update/circles/${{ github.sha }} | ||
gh pr create --title "feat(circles): update image" --body "Updates the image for the circles deployment to commit csesoc/circles@${{ github.sha }}." > URL | ||
gh pr create -B migration --title "feat(circles): update image" --body "Updates the image for the circles deployment to commit csesoc/circles@${{ github.sha }}." > URL | ||
gh pr merge $(cat URL) --squash -d |
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
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
Oops, something went wrong.