Publish images to DockerHub, deploy Demo environment to AWS #6
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 and publish images to DockerHub | |
on: | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
jobs: | |
release-publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Get version | |
run: | | |
VERSION=$(cat version) | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Check if image tag already exists Frontend | |
run: | | |
IMAGE_NAME="enaccess/micropowermanager-frontend" | |
VERSION="${{ env.VERSION }}" | |
if docker manifest inspect $IMAGE_NAME:$VERSION > /dev/null 2>&1; then | |
echo "Docker image tag $VERSION already exists." | |
exit 1 | |
else | |
echo "Docker image tag $VERSION does not exist. Proceeding with build." | |
fi | |
- name: Check if image tag already exists Backend | |
run: | | |
IMAGE_NAME="enaccess/micropowermanager-frontend" | |
VERSION="${{ env.VERSION }}" | |
if docker manifest inspect $IMAGE_NAME:$VERSION > /dev/null 2>&1; then | |
echo "Docker image tag $VERSION already exists." | |
exit 1 | |
else | |
echo "Docker image tag $VERSION does not exist. Proceeding with build." | |
fi | |
- name: Build and push Docker image Frontend | |
uses: docker/build-push-action@v5 | |
with: | |
file: ./docker/DockerfileUIProd | |
platforms: linux/amd64 | |
push: true | |
tags: | | |
enaccess/micropowermanager-frontend:latest | |
enaccess/micropowermanager-frontend:${{ env.VERSION }} | |
- name: Build and push Docker image Backend | |
uses: docker/build-push-action@v5 | |
with: | |
file: ./docker/DockerfileLaravelProd | |
platforms: linux/amd64 | |
push: true | |
tags: | | |
enaccess/micropowermanager-backend:latest | |
enaccess/micropowermanager-backend:${{ env.VERSION }} | |
- name: Update Docker Hub Description Frontend | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
repository: enaccess/micropowermanager-frontend | |
short-description: Open Source Management Tool for Decentralized Utilities | |
- name: Update Docker Hub Description Backend | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
repository: enaccess/micropowermanager-backend | |
short-description: Open Source Management Tool for Decentralized Utilities |