forked from naskio/docker-strapi
-
Notifications
You must be signed in to change notification settings - Fork 4
143 lines (127 loc) · 4.58 KB
/
publish-docker-images.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
###########
# ENV VARS:
# - DOCKER_USERNAME
# - DOCKER_PASSWORD
# - GITHUB_TOKEN (default)
###########
name: Publish Docker Image
on:
push:
paths:
- 'release-versions/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get current repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
files: release-versions/**
- name: Get the version
id: vars
run: |
if echo "${{ steps.changed-files.outputs.modified_files }}" | grep -q 'strapi-v5-latest.txt'; then
echo "tag=$(cat release-versions/strapi-v5-latest.txt)" >> "$GITHUB_OUTPUT"
echo "latest=latest" >> "$GITHUB_OUTPUT"
else
echo "tag=$(cat release-versions/strapi-v4-latest.txt)" >> "$GITHUB_OUTPUT"
echo "latest=latest-v4" >> "$GITHUB_OUTPUT"
fi
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and export to Docker
uses: docker/build-push-action@v6
with:
load: true
context: ./images/strapi-debian
build-args: |
STRAPI_VERSION=${{steps.vars.outputs.tag}}
NODE_VERSION=18
NODE=node
GITHUB_ACTIONS=1
tags: ${{ secrets.DOCKER_USERNAME }}/strapi:test
- name: Test Image
run: |
docker run --rm ${{ secrets.DOCKER_USERNAME }}/strapi:test
- name: Build (default => debian)
uses: docker/build-push-action@v6
with:
context: ./images/strapi-debian
platforms: linux/amd64
build-args: |
STRAPI_VERSION=${{steps.vars.outputs.tag}}
NODE_VERSION=18
NODE=node
push: true
tags: |
${{ secrets.DOCKER_USERNAME }}/strapi:${{ steps.vars.outputs.tag }}
${{ secrets.DOCKER_USERNAME }}/strapi:${{ steps.vars.outputs.latest }}
- name: Build (alpine)
uses: docker/build-push-action@v6
with:
context: ./images/strapi-alpine
platforms: linux/amd64
build-args: |
STRAPI_VERSION=${{ steps.vars.outputs.tag }}
NODE_VERSION=18
NODE=node
push: true
tags: |
${{ secrets.DOCKER_USERNAME }}/strapi:${{ steps.vars.outputs.tag }}-alpine
${{ secrets.DOCKER_USERNAME }}/strapi:${{ steps.vars.outputs.latest }}-alpine
- name: Build (default => debian arm64)
uses: docker/build-push-action@v6
with:
context: ./images/strapi-debian
platforms: linux/arm64
build-args: |
STRAPI_VERSION=${{steps.vars.outputs.tag}}
NODE_VERSION=18
NODE=arm64v8/node
push: true
tags: |
${{ secrets.DOCKER_USERNAME }}/strapi:${{ steps.vars.outputs.tag }}-arm64
${{ secrets.DOCKER_USERNAME }}/strapi:${{ steps.vars.outputs.latest }}-arm64
- name: Build (alpine arm64)
uses: docker/build-push-action@v6
with:
context: ./images/strapi-alpine
platforms: linux/arm64
build-args: |
STRAPI_VERSION=${{ steps.vars.outputs.tag }}
NODE_VERSION=18
NODE=arm64v8/node
push: true
tags: |
${{ secrets.DOCKER_USERNAME }}/strapi:${{ steps.vars.outputs.tag }}-alpine-arm64
${{ secrets.DOCKER_USERNAME }}/strapi:${{ steps.vars.outputs.latest }}-alpine-arm64
- name: Docker Hub Description (README.md)
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: vshadbolt/strapi
readme-filepath: README.md
enable-url-completion: true
- name: Create Release in GitHub
id: create_release
uses: actions/create-release@v1
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: v${{steps.vars.outputs.tag}}
release_name: Release ${{steps.vars.outputs.tag}}
body: strapi v${{steps.vars.outputs.tag}}