-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-and-release-wordpress.yml
More file actions
89 lines (78 loc) · 2.61 KB
/
Copy pathbuild-and-release-wordpress.yml
File metadata and controls
89 lines (78 loc) · 2.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Build And Release Wordpress Image
on:
workflow_dispatch:
permissions:
contents: write
pull-requests: write
packages: write
jobs:
prepare-a-release:
runs-on: ubuntu-latest
outputs:
new_version: ${{ steps.tag_version.outputs.new_version}}
new_tag: ${{ steps.tag_version.outputs.new_tag }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: "0"
- name: Generate Tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: v
release_branches: main,production,release/*
dry_run: "true"
build-and-push-docker-image:
needs: prepare-a-release
runs-on: ubuntu-latest
outputs:
new_version: ${{ needs.prepare-a-release.outputs.new_version }}
new_tag: ${{ needs.prepare-a-release.outputs.new_tag }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: ${{ vars.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
cache-from: type=gha, scope=data-viz-wordpress
cache-to: type=gha, scope=data-viz-wordpress
context: .
push: true
build-args: |
VERSION=${{ needs.prepare-a-release.outputs.new_version }}
TAG=${{ needs.prepare-a-release.outputs.new_tag }}
tags: |
${{ vars.DOCKER_REGISTRY }}/data-viz/wordpress:v${{ needs.prepare-a-release.outputs.new_version }}
${{ vars.DOCKER_REGISTRY }}/data-viz/wordpress:latest
release-on-github:
needs: build-and-push-docker-image
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.build-and-push-docker-image.outputs.new_tag }}
generate_release_notes: true
draft: false
prerelease: false
make_latest: "true"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}