-
Notifications
You must be signed in to change notification settings - Fork 30
61 lines (58 loc) · 1.92 KB
/
docker-image-snapshot.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: Docker SNAPSHOT Image CI
on: push
jobs:
tag:
runs-on: ubuntu-latest
steps:
- name: Get current time
uses: josStorer/get-current-time@v2
id: time
with:
format: YYYYMMDD-HHmmss
utcOffset: "+08:00"
- name: Get Branch Name
id: tag
run: |
FULL_BRANCH_NAME=$GITHUB_REF_NAME
BRANCH_NAME="${FULL_BRANCH_NAME//\//_}"
TAG_NAME=${BRANCH_NAME}-${{ steps.time.outputs.formattedTime }}
echo ${TAG_NAME}
echo "tag=${TAG_NAME}" >> $GITHUB_OUTPUT
outputs:
tag: ${{ steps.tag.outputs.tag }}
docker:
needs: tag
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_SNAPSHOT_USERNAME }}
password: ${{ secrets.DOCKERHUB_SNAPSHOT_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ${{ secrets.DOCKERHUB_SNAPSHOT_USERNAME }}/arex-replay-schedule:${{ needs.tag.outputs.tag }}
- name: Send mail
uses: dawidd6/action-send-mail@v3
with:
server_address: smtp.gmail.com
server_port: 465
secure: true
username: ${{secrets.MAIL_USERNAME}}
password: ${{secrets.MAIL_PASSWORD}}
subject: Arex Schedule Snapshot Image Build Job Completed
to: ${{ vars.ACTION_RESULT_MAIL }}
from: ArexAdmin02
body: Build job of ${{github.repository}} completed successfully! Image tag ${{ needs.tag.outputs.tag }}