[os] linux/arm64 4 Raspberry PI #30
Workflow file for this run
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: Docker Image CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
release: | |
types: [published] | |
jobs: | |
backend-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout backend code | |
uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
- name: Build and push the Docker image for backend | |
run: | | |
if [ ${{ github.event_name }} == 'pull_request' ]; then | |
DOCKER_IMAGE_TAG=development | |
else | |
DOCKER_IMAGE_TAG=production | |
fi | |
docker buildx build ./backend --file ./backend/Dockerfile --tag themanwholikestocode/archive-me-prod:backend-$DOCKER_IMAGE_TAG --platform=linux/arm64 --push | |
frontend-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout frontend code | |
uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
- name: Build and push the Docker image for frontend | |
run: | | |
if [ ${{ github.event_name }} == 'pull_request' ]; then | |
DOCKER_IMAGE_TAG=development | |
else | |
DOCKER_IMAGE_TAG=production | |
fi | |
docker buildx build ./frontend --file ./frontend/Dockerfile --tag themanwholikestocode/archive-me-prod:frontend-$DOCKER_IMAGE_TAG --platform=linux/amd64 --push |