-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (54 loc) · 1.69 KB
/
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
name: Build and push Docker image
on:
push:
branches:
- develop
- docker
paths:
- ".github/workflows/docker.yml"
- ".dockerignore"
- "Copy/**"
jobs:
build:
name: Build image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set variables
id: vars
run: |
calculatedSha=$(git rev-parse --short ${{ github.sha }})
echo "short_sha=$calculatedSha" >> $GITHUB_OUTPUT
echo "username=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.HUB_USERNAME }}
password: ${{ secrets.HUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Copy/Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/${{ steps.vars.outputs.username }}:${{ steps.vars.outputs.short_sha }}
ghcr.io/${{ steps.vars.outputs.username }}:latest
${{ steps.vars.outputs.username }}:${{ steps.vars.outputs.short_sha }}
${{ steps.vars.outputs.username }}:latest