-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (54 loc) · 1.91 KB
/
build-and-push.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
name: Build and Push Docker Image
on:
push:
branches:
- main
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Determine Git tag
id: git-tag
run: echo "::set-output name=tag::$(git describe --exact-match --tags HEAD || echo '')"
- name: Set tag if empty or invalid
id: set-tag
run: |
if [ -z "${{ steps.git-tag.outputs.tag }}" ]; then
echo "::set-output name=tag::latest"
elif [[ "${{ steps.git-tag.outputs.tag }}" == *" "* ]]; then
echo "::set-output name=tag::latest"
else
echo "::set-output name=tag::${{ steps.git-tag.outputs.tag }}"
fi
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ env.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set default value for env.PUSH_DOCKER_IMAGE if not defined
run: |
if [[ -z "${{ env.PUSH_DOCKER_IMAGE }}" ]]; then
echo "Variable 'PUSH_DOCKER_IMAGE' is not defined. Setting default value."
export PUSH_DOCKER_IMAGE=false
fi
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: ./bot/
file: ./bot/Dockerfile
# platforms: linux/amd64
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8,linux/386
push: true
tags: |
${{ env.DOCKERHUB_USERNAME }}/url-fairy-bot:latest
${{ env.DOCKERHUB_USERNAME }}/url-fairy-bot:${{ github.sha }}
${{ env.DOCKERHUB_USERNAME }}/url-fairy-bot:${{ steps.set-tag.outputs.tag }}