-
Notifications
You must be signed in to change notification settings - Fork 4
63 lines (52 loc) · 1.63 KB
/
Copy pathbuild-push.yaml
File metadata and controls
63 lines (52 loc) · 1.63 KB
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
name: Build Push Image
on:
push:
branches:
- main
- test
tags:
- '*'
jobs:
build-push:
runs-on: [gpu]
strategy:
matrix:
target: [release, develop]
steps:
- name: Define environment variables
run: |
echo IMAGE_NAME=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
echo IMAGE_TAG=$(echo ${{ matrix.target }}) >> $GITHUB_ENV
if [ "${{ matrix.target }}" = "release" ]; then
echo IMAGE_TAG=latest >> $GITHUB_ENV
fi
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push to registries
uses: docker/build-push-action@v6
with:
push: true
tags: |
ghcr.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
docker.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
target: ${{ matrix.target }}
cache-from: type=local,src=/home/runner/.buildx-cache
cache-to: type=local,dest=/home/runner/.buildx-cache,mode=max
build-push-cleanup:
runs-on: ubuntu-latest
needs: build-push
steps:
- uses: dataaxiom/ghcr-cleanup-action@v1