-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (47 loc) · 1.41 KB
/
main.yml
File metadata and controls
59 lines (47 loc) · 1.41 KB
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
---
name: Build this Docker image
on:
workflow_dispatch:
push:
schedule:
- cron: '11 3 * * *'
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Checkout Git repo
uses: actions/checkout@v3
with:
ref: master
path: git
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
push: true
tags: devopsansiblede/wordpress:latest
no-cache: true
context: ./git/
file: ./git/Dockerfile
platforms: linux/amd64,linux/arm64
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
- name: Last Built
run: sed -i -E "s/^[0-9]{4}-[0-9]{2}-[0-9]{2}\s+[0-9]{2}:[0-9]{2}:[0-9]{2}$/$( date +"%Y-%m-%d %T" )/" ./git/README.md
- name: Commit last built information
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Last built
commit_user_name: GitHub Actions
commit_user_email: dev@macwinnie.me
repository: ./git/
...