forked from RayWangQvQ/BiliBiliToolPro
-
Notifications
You must be signed in to change notification settings - Fork 0
93 lines (88 loc) · 2.87 KB
/
publish-image.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
name: Publish image
on:
workflow_dispatch:
inputs:
manualTag:
description: 'tag'
required: true
release:
types: [published]
env:
DOCKERHUB_USERNAME : ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_PASSWORD : ${{ secrets.DOCKERHUB_PASSWORD }}
jobs:
CheckDockerToken:
runs-on: ubuntu-latest
outputs:
hasToken: ${{ steps.step_one.outputs.hasToken }}
steps:
- name: Set the value
id: step_one
run: |
if [ "$DOCKERHUB_PASSWORD" ] ; then
echo "::set-output name=hasToken::true"
else
echo "::set-output name=hasToken::false"
fi
- name: Check the value
run: |
echo ${{ steps.step_one.outputs.hasToken }}
##echo "GITHUB_REF: $GITHUB_REF"
##echo "GITHUB_REF#refs/tags/: ${GITHUB_REF#refs/tags/}"
echo "github.event.release.tag_name: ${{ github.event.release.tag_name }}"
echo "github.event.inputs.manualTag: ${{ github.event.inputs.manualTag }}"
Publish2DockerHub:
runs-on: ubuntu-latest
needs: CheckDockerToken
if: "contains(needs.CheckDockerToken.outputs.hasToken, 'true')"
steps:
-
name: GetRepoTag
id: getRepoTag
run: |
RepoTag=""
if [ "${{ github.event.release.tag_name }}" ] ; then
RepoTag=${{ github.event.release.tag_name }}
fi
if [ "${{ github.event.inputs.manualTag }}" ] ; then
RepoTag=${{ github.event.inputs.manualTag }}
fi
echo "repo tag: $RepoTag"
echo "::set-output name=repoTag::$RepoTag"
-
name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ steps.getRepoTag.outputs.repoTag }}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
-
name: GetDockerTagNames
id: getDockerTags
run: |
DOCKER_IMAGE_TAG="zai7lou/bilibili_tool_pro:${{ steps.getRepoTag.outputs.repoTag }}"
DOCKER_IMAGE_LATEST_TAG=",zai7lou/bilibili_tool_pro:latest"
if [ "${{ github.event.inputs.manualTag }}" ] ; then
DOCKER_IMAGE_LATEST_TAG=""
fi
DOCKER_IMAGE_TAGS=$DOCKER_IMAGE_TAG$DOCKER_IMAGE_LATEST_TAG
echo "docker image tag: $DOCKER_IMAGE_TAGS"
echo "::set-output name=dockerTags::$DOCKER_IMAGE_TAGS"
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.getDockerTags.outputs.dockerTags }}