Skip to content

Use github actions for building and pushing images #16

Use github actions for building and pushing images

Use github actions for building and pushing images #16

name: Build and deploy application
on:
push:
branches:
- fix-build
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to container registry
uses: docker/login-action@v3
with:
registry: ${{ secrets.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
# See: https://github.com/orgs/community/discussions/25768#discussioncomment-3249186
- name: Set lowercase image name env var
run: |
echo "IMAGE_NAME=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64/v8
push: true
tags: ${{ secrets.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
# - name: Build and push image
# run: |
# docker buildx build --platform linux/arm64/v8 --target release -t "${{ secrets.REGISTRY }}/$IMAGE_NAME:$IMAGE_TAG" --push .
# - name: Build and push dracula image
# run: |
# docker buildx build --platform linux/arm64/v8 --target release -t "${{ secrets.REGISTRY }}/$IMAGE_NAME-dracula:$IMAGE_TAG" --build-arg BOT_PHRASES_URL=${{ secrets.DRACULA_URL }}" --push .