-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (49 loc) · 1.42 KB
/
deploy.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 deploy to ghcr.io
on:
workflow_dispatch:
inputs:
reason:
required: true
description: 'Reason for running this workflow'
push:
branches:
- master
paths-ignore:
- '**.md'
jobs:
build:
name: 'Build'
runs-on: ubuntu-latest
steps:
- name: "Build:buildx"
uses: docker/setup-buildx-action@v3
- name: "Build:login"
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 'Build:buildandpush'
uses: docker/build-push-action@v6
with:
push: true
platforms: linux/amd64
tags: ghcr.io/${{ github.repository }}:latest,ghcr.io/${{ github.repository }}:${{ github.run_number }}-${{ github.sha }}
buildarm64:
name: 'Build ARM64'
runs-on: ubuntu-24.04-arm
steps:
- name: "Build:buildx"
uses: docker/setup-buildx-action@v3
- name: "Build:login"
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 'Build:buildandpush'
uses: docker/build-push-action@v6
with:
push: true
platforms: linux/arm64
tags: ghcr.io/${{ github.repository }}:latest-arm64,ghcr.io/${{ github.repository }}:${{ github.run_number }}-${{ github.sha }}-arm64