-
Notifications
You must be signed in to change notification settings - Fork 103
60 lines (51 loc) · 1.42 KB
/
publish-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
name: Build and Publish Docker
on:
push:
branches:
- master
workflow_dispatch: {}
env:
REGISTRY: docker.io
IMAGE_NAME: a16zcrypto/magi
jobs:
container:
runs-on: ubuntu-latest
permissions:
id-token: write
packages: write
contents: read
timeout-minutes: 60
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v4
- name: Install Docker BuildX
uses: docker/setup-buildx-action@v3
id: buildx
with:
install: true
- name: Log into Docker Hub
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Finalize Docker Metadata
id: docker_tagging
run: |
echo "::set-output name=docker_tags::${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${GITHUB_REF##*/}"
- name: Set up Docker Buildx cache
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.docker_tagging.outputs.docker_tags }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache