-
-
Notifications
You must be signed in to change notification settings - Fork 494
54 lines (51 loc) · 1.79 KB
/
build-nightly-release.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
name: "[builder] CI for nightly build releases"
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch: ~
env:
REGISTRY: ghcr.io
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Dockerhub login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set date
id: date
uses: docker/metadata-action@v5
with:
images: |
${{ secrets.DOCKER_USERNAME }}/ttrss
${{ env.REGISTRY }}/${{ github.repository }}
tags: |
type=raw,value=nightly,enable={{ is_default_branch }}
type=raw,value=nightly-{{ date 'YYYY-MM-DD' }},enable={{ is_default_branch }}
type=raw,value={{ branch }}-nightly,enable=${{ github.ref != format('refs/heads/{0}', 'main') }}
type=raw,value={{ branch }}-nightly-{{date 'YYYY-MM-DD'}},enable=${{ github.ref != format('refs/heads/{0}', 'main') }}
flavor: latest=false
- name: Build dockerfile (with push)
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.date.outputs.tags }}
labels: ${{ steps.date.outputs.labels }}
platforms: linux/amd64,linux/arm/v7,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max