-
Notifications
You must be signed in to change notification settings - Fork 632
73 lines (62 loc) · 2.29 KB
/
push-docker.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
name: Build cross-platform docker image
on:
push:
branches:
- 'enhanced'
paths:
- '.github/workflows/push-docker.yml'
- 'precompiled/**'
- 'server.crt'
- 'server.key'
release:
types:
- published
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
image: pan93412/unblock-netease-music-enhanced
develop_tag: latest
released_tag: release
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v3
- name: Get the current tag name
uses: olegtarasov/[email protected]
id: tagName
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push the latest version
uses: docker/build-push-action@v4
if: github.event_name != 'release'
with:
context: .
platforms: ${{ env.platforms }}
push: true
tags: ${{ env.image }}:${{ env.develop_tag }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Build and push the released version
uses: docker/build-push-action@v4
if: github.event_name == 'release'
with:
context: .
platforms: ${{ env.platforms }}
push: true
tags: >-
${{ env.image }}:${{ env.develop_tag }},
${{ env.image }}:${{ env.released_tag }},
${{ env.image }}:${{ steps.tagName.outputs.tag }}
cache-from: type=gha
cache-to: type=gha,mode=max