forked from openedx-unsupported/devstack
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (51 loc) · 1.82 KB
/
push-registrar-image.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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
- 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: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: List files for debugging
run: ls -R
- name: Build and push Dev Docker image
uses: docker/build-push-action@v6
with:
context: .
file: dockerfiles/registrar.Dockerfile
push: true
target: dev
tags: edxops/registrar-devstack-dev:${{ 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
from: github-actions <[email protected]>
body: Push Image to docker.io/edxops for registrar failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"