-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (36 loc) · 1.07 KB
/
publish-dockerhub.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
name: Publish to Docker Hub (on push and scheduled once a week)
on:
push:
branches:
- main
schedule:
- cron: "0 22 * * 0"
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Buildarr v0.7
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
build-args: |
BUILDARR_VERSION=0.7.1
BUILDARR_SONARR_VERSION=0.6.4
BUILDARR_RADARR_VERSION=0.2.6
BUILDARR_PROWLARR_VERSION=0.5.3
BUILDARR_JELLYSEERR_VERSION=0.3.2
push: true
tags: |
callum027/buildarr:0.7.8
callum027/buildarr:0.7
callum027/buildarr:latest