Naming of docker image action #33
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: 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 build ./backend -t themanwholikestocode/archive-me-prod:backend-$DOCKER_IMAGE_TAG | |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
docker push themanwholikestocode/archive-me-prod:backend-$DOCKER_IMAGE_TAG | |
frontend-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout frontend code | |
uses: actions/checkout@v3 | |
- 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 build ./frontend -t themanwholikestocode/archive-me-prod:frontend-$DOCKER_IMAGE_TAG | |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
docker push themanwholikestocode/archive-me-prod:frontend-$DOCKER_IMAGE_TAG |