-
Notifications
You must be signed in to change notification settings - Fork 2
85 lines (77 loc) · 2.55 KB
/
ghcr-publish.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Build and Push to GHCR
on:
workflow_dispatch:
repository_dispatch:
types: [Build and Push to GHCR]
push:
branches:
- master
jobs:
build-and-push-to-ghcr:
runs-on: ubuntu-latest
steps:
- uses: benjlevesque/[email protected]
id: short-sha
with:
length: 7
- uses: actions/[email protected]
- name: Log into GitHub Container Registry
run: echo "${{ secrets.GIT_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
- name: Set up QEMU
uses: docker/[email protected]
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
with:
install: true
version: latest
driver-opts: image=moby/buildkit:master
- name: Build and push
id: docker_build_amd64
uses: docker/[email protected]
with:
context: ./
file: ./Dockerfile
push: true
tags: |
ghcr.io/niniyas/tailon:beta
ghcr.io/${{ secrets.GIT_USER }}/tailon:beta-${{ steps.short-sha.outputs.sha }}
platforms: linux/amd64,linux/arm64
- name: ntfy success notifications
uses: niniyas/ntfy-action@master
if: success()
with:
url: ${{ secrets.NTFY_URL }}
topic: ${{ secrets.NTFY_TOPIC }}
tags: github,action,+1,partying_face
priority: 4
image: true
actions: 'default'
details: 'Workflow has been completed successfully!'
headers: '${{ secrets.NTFY_HEADERS }}'
- name: ntfy failed notifications
uses: niniyas/ntfy-action@master
if: failure()
with:
url: ${{ secrets.NTFY_URL }}
topic: ${{ secrets.NTFY_TOPIC }}
tags: github,action,failed,rotating_light
priority: 5
image: true
actions: 'default'
details: 'Workflow has failed!'
headers: '${{ secrets.NTFY_HEADERS }}'
- name: ntfy cancelled notifications
uses: niniyas/ntfy-action@master
if: cancelled()
with:
url: ${{ secrets.NTFY_URL }}
topic: ${{ secrets.NTFY_TOPIC }}
tags: github,action,cancelled,skull
details: 'Workflow has been cancelled!'
headers: '${{ secrets.NTFY_HEADERS }}'
image: true
actions: 'default'