feat: added dockerfile and docker image push workflow for edx-api-notes #2
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 Push Edx Api Notes Image | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: "Target branch from which the source dockerfile from image will be sourced" | |
schedule: | |
- cron: "0 4 * * 1-5" # UTC Time | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get tag name | |
id: get-tag-name | |
uses: actions/github-script@v5 | |
with: | |
script: | | |
const tagName = "${{ github.event.inputs.branch }}" || 'latest'; | |
return tagName; | |
result-encoding: string | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and push Dev Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
file: ./dockerfiles/edx-api-notes.Dockerfile | |
push: true | |
target: dev | |
tags: edxops/edx-api-notes-dev:${{ steps.get-tag-name.outputs.result }} | |
platforms: linux/amd64,linux/arm64 | |
- name: Send failure notification | |
if: failure() | |
uses: dawidd6/action-send-mail@v3 | |
with: | |
server_address: email-smtp.us-east-1.amazonaws.com | |
server_port: 465 | |
username: ${{secrets.edx_smtp_username}} | |
password: ${{secrets.edx_smtp_password}} | |
subject: Push Image to docker.io/edxops failed in Edx Api Notes | |
to: [email protected] | |
from: github-actions <[email protected]> | |
body: Push Image to docker.io/edxops for Edx Api Notes failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" |