-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-and-pre-release-wordpress.yml
More file actions
108 lines (96 loc) · 3.33 KB
/
Copy pathbuild-and-pre-release-wordpress.yml
File metadata and controls
108 lines (96 loc) · 3.33 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: Build And Pre Release Wordpress Image
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- ".changeset/**"
- "package.json"
- ".github/**"
- "packages/create-wp-customizer/**"
- "packages/upgrade-wp-customizer/**"
permissions:
contents: write
pull-requests: write
packages: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
prepare-a-pre-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: Get Current Date And Time
id: current_date
run: echo "current_date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
- name: Generate Tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: v
release_branches: production,release/*
pre_release_branches: main
append_to_pre_release_tag: rc
dry_run: "true"
build-and-push-docker-image:
needs: prepare-a-pre-release
runs-on: ubuntu-latest
outputs:
new_version: ${{ needs.prepare-a-pre-release.outputs.new_version }}
new_tag: ${{ needs.prepare-a-pre-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: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
cache-from: type=registry,ref=${{ vars.DOCKER_REGISTRY }}/devgateway/data-viz/wordpress:buildcache
cache-to: type=registry,ref=${{ vars.DOCKER_REGISTRY }}/devgateway/data-viz/wordpress:buildcache,mode=max
context: .
push: true
build-args: |
BUILDKIT_INLINE_CACHE=1
VERSION=${{ needs.prepare-a-pre-release.outputs.new_version }}
TAG=${{ needs.prepare-a-pre-release.outputs.new_tag }}
tags: |
${{vars.DOCKER_REGISTRY }}/devgateway/data-viz/wordpress:dev
${{ vars.DOCKER_REGISTRY }}/devgateway/data-viz/wordpress:v${{ needs.prepare-a-pre-release.outputs.new_version }}
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: true
make_latest: "false"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}