-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0d7a1c
commit b9124e9
Showing
1 changed file
with
31 additions
and
0 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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
name: Docker | ||
on: | ||
push: | ||
branches: | ||
- "master" | ||
|
||
jobs: | ||
build: | ||
|
@@ -34,3 +36,32 @@ jobs: | |
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
deploy: | ||
name: Deploy (CD) | ||
runs-on: ubuntu-latest | ||
needs: [ build ] | ||
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
repository: csesoc/deployment | ||
ref: migration | ||
token: ${{ secrets.GH_TOKEN }} | ||
- name: Install yq | ||
uses: mikefarah/[email protected] | ||
- 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/hasuragres/${{ github.sha }} | ||
yq -i '.items[0].spec.template.spec.containers[0].image = "ghcr.io/devsoc-unsw/hasuragres:${{ github.sha }}"' projects/hasuragres/hasuragres.yml | ||
git add . | ||
git commit -m "feat(hasuragres): update image" | ||
git push -u origin update/hasuragres/${{ github.sha }} | ||
gh pr create -B migration --title "feat(hasuragres): update image" --body "Updates the image for the hasuragres deployment to commit devsoc-unsw/hasuragres@${{ github.sha }}." > URL | ||
gh pr merge $(cat URL) --squash -d |