-
Notifications
You must be signed in to change notification settings - Fork 116
32 lines (30 loc) · 1.27 KB
/
fluffy_nightly_docker.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
# Fluffy
# Copyright (c) 2023-2024 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
# at your option. This file may not be copied, modified, or distributed except according to those terms.
name: Fluffy nightly Docker build
on:
schedule:
- cron: "30 0 * * *"
workflow_dispatch:
jobs:
# Keeping it simple and only providing AMD64 latest image as that is what is
# needed for testing Portal-Hive
build-amd64:
name: Linux AMD64 Docker build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push a nightly Docker image
run: |
REFNAME="${{ github.ref_name }}"
DOCKER_BUILDKIT=1 docker build -f ./fluffy/tools/docker/Dockerfile -t statusim/nimbus-fluffy:amd64-${REFNAME}-latest .
docker push statusim/nimbus-fluffy:amd64-${REFNAME}-latest