-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (42 loc) · 1.27 KB
/
docker-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
name: Docker
on:
push:
# Publish `master` as Docker `latest` image.
branches:
- master
schedule:
- cron: '0 8 1 * *'
workflow_dispatch: {}
env:
IMAGE_NAME: infobord
jobs:
# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
push:
# Ensure test job passes before pushing image.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
push: true
tags: ghcr.io/djoamersfoort/infobord/infobord:latest
- name: Redeploy
run: |
curl https://portainer.djoamersfoort.nl/hooks/update-docker-image?stack=infobord -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}"
- name: Clean up old images
uses: actions/delete-package-versions@v5
with:
package-name: 'infobord/infobord'
package-type: 'container'
min-versions-to-keep: 5
delete-only-untagged-versions: 'true'