-
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.
Merge pull request #42 from depocoder/dev
Add workflow for main branch only (build + deploy)
- Loading branch information
Showing
3 changed files
with
72 additions
and
47 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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: build and deploy | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
env: | ||
REGISTRY_URL: ghcr.io | ||
REGISTRY_USERNAME: azamatkomaev | ||
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} | ||
IMAGE_TAG: ${{ github.sha }} | ||
|
||
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | ||
SSH_HOST: ${{ secrets.SSH_HOST }} | ||
SSH_USER: ${{ secrets.SSH_USER }} | ||
SSH_PORT: ${{ secrets.SSH_PORT }} | ||
|
||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Login with Github Container registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY_URL }} | ||
username: ${{ env.REGISTRY_USERNAME }} | ||
password: ${{ env.REGISTRY_PASSWORD }} | ||
- name: Add custom builder | ||
run: | | ||
docker buildx create \ | ||
--name container-builder \ | ||
--driver docker-container \ | ||
--bootstrap --use | ||
- name: Build & Publish backend to Github Container registry | ||
run: | | ||
docker buildx build --platform linux/amd64,linux/arm64 --push ./backend \ | ||
--tag $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_backend:latest \ | ||
--tag $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_backend:$IMAGE_TAG | ||
- name: Build & Publish frontend to Github Container registry | ||
run: | | ||
docker buildx build --platform linux/amd64,linux/arm64 --push ./frontend \ | ||
--tag $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_frontend:latest \ | ||
--tag $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_frontend:$IMAGE_TAG | ||
deploy: | ||
runs-on: ubuntu-latest | ||
needs: [build] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )' | ||
- name: Set up SSH private key. | ||
run: eval "$(ssh-agent -s)" | ||
- run: mkdir -p ~/.ssh | ||
- run: ssh-keyscan -p $SSH_PORT $SSH_HOST >> ~/.ssh/known_hosts | ||
- run: ssh-agent -a $SSH_AUTH_SOCK > /dev/null | ||
- run: ssh-add - <<< "${{ secrets.SSH_KEY }}" | ||
- name: Add image tag to .version file | ||
run: | | ||
echo $IMAGE_TAG > .version | ||
scp -P 666 .version $SSH_USER@$SSH_HOST:~/YetAnotherCalendar/.version | ||
- name: Update docker compose | ||
run: | | ||
ssh $SSH_USER@$SSH_HOST -p $SSH_PORT "cd YetAnotherCalendar/ && git pull origin main && | ||
YET_ANOTHER_CALENDAR_VERSION=$(cat .version) docker compose -f docker-compose.prod.yaml pull && | ||
YET_ANOTHER_CALENDAR_VERSION=$(cat .version) docker compose -f docker-compose.prod.yaml up -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 was deleted.
Oops, something went wrong.