Skip to content

Commit

Permalink
add .github/workflows, add build.yaml workflow (#2)
Browse files Browse the repository at this point in the history
* add docker support, create prod.py

* fix first message after running prod.py

* fix container name, add volumes for auto-reload

* add .github/workflows, add build.yaml workflow
  • Loading branch information
AzamatKomaev authored Sep 23, 2024
1 parent 6457d22 commit a827db8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build
on:
push:
branches:
- "*"
paths-ignore:
- "README.md"
workflow_dispatch:

env:
REGISTRY_URL: ghcr.io
REGISTRY_USERNAME: azamatkomaev
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
IMAGE_TAG: ${{ github.sha }}

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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: Build & Publish to Github Container registry
run: |
docker build ./backend --tag $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-backend:latest \
--tag $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-backend:$IMAGE_TAG
docker push $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-backend:latest
docker push $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-backend:$IMAGE_TAG

0 comments on commit a827db8

Please sign in to comment.