refactor: deprecate devstack from registrar IDA #5
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: Build and Push Docker Images | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- '**' | |
schedule: | |
- cron: "0 4 * * 1-5" # UTC Time | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout current repo | |
uses: actions/checkout@v4 | |
- name: Get tag name | |
id: get-tag-name | |
uses: actions/github-script@v5 | |
with: | |
script: | | |
const branchName = context.ref.split('/').slice(-1)[0]; | |
const tagName = branchName === 'master' ? 'latest' : branchName; | |
console.log('Will use tag: ' + tagName); | |
return tagName; | |
result-encoding: string | |
- name: Build and push Dev Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
dockerfile: dockerfiles/registrar.Dockerfile | |
push: true | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
target: dev | |
repository: edxops/registrar-devstack-dev | |
tags: ${{ steps.get-tag-name.outputs.result }},${{ github.sha }} | |
- 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 registrar | |
to: hunia.fatima@arbisoft.com | |
from: github-actions <github-actions@edx.org> | |
body: Push Image to docker.io/edxops for registrar failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" |