fix empty modeus #169
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
name: build | |
on: | |
push: | |
branches: | |
- dev | |
paths-ignore: | |
- "README.md" | |
workflow_dispatch: | |
env: | |
REGISTRY_URL: ghcr.io | |
REGISTRY_USERNAME: azamatkomaev | |
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} | |
IMAGE_TAG: ${{ github.sha }} | |
S3_ENDPOINT_URL: ${{ secrets.S3_ENDPOINT_URL }} | |
S3_REGION: ${{ secrets.S3_REGION }} | |
BUCKET_NAME: ${{ secrets.BUCKET_NAME }} | |
SECRET_KEY: ${{ secrets.SECRET_KEY }} | |
ACCESS_KEY: ${{ secrets.ACCESS_KEY }} | |
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:$IMAGE_TAG \ | |
--cache-to type=s3,endpoint_url=$S3_ENDPOINT_URL,region=$S3_REGION,bucket=$BUCKET_NAME,name=calendar_backend,access_key_id=$ACCESS_KEY,secret_access_key=$SECRET_KEY \ | |
--cache-from type=s3,endpoint_url=$S3_ENDPOINT_URL,region=$S3_REGION,bucket=$BUCKET_NAME,name=calendar_backend,access_key_id=$ACCESS_KEY,secret_access_key=$SECRET_KEY | |
- 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:$IMAGE_TAG \ | |
--cache-to type=s3,endpoint_url=$S3_ENDPOINT_URL,region=$S3_REGION,bucket=$BUCKET_NAME,name=calendar_frontend,access_key_id=$ACCESS_KEY,secret_access_key=$SECRET_KEY \ | |
--cache-from type=s3,endpoint_url=$S3_ENDPOINT_URL,region=$S3_REGION,bucket=$BUCKET_NAME,name=calendar_frontend,access_key_id=$ACCESS_KEY,secret_access_key=$SECRET_KEY |