-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (54 loc) · 1.71 KB
/
build.yaml
File metadata and controls
63 lines (54 loc) · 1.71 KB
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
name: ci
on:
schedule:
- cron: 30 12 * * 1
push:
paths:
- Dockerfile
- .github/workflows/build.yaml
branches: main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get latest ledfx version
id: get-ledfx-version
run: |
echo "LEDFX_VERSION=$(curl -Ls https://pypi.org/pypi/ledfx/json | jq -r .info.version)" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/explodingcamera/ledfx
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
context: .
file: ./Dockerfile
build-args: |
LEDFX_VERSION=${{ steps.get-ledfx-version.outputs.LEDFX_VERSION }}
tags: |
explodingcamera/ledfx:latest
explodingcamera/ledfx:${{ steps.get-ledfx-version.outputs.LEDFX_VERSION }}
ghcr.io/explodingcamera/ledfx:latest
ghcr.io/explodingcamera/ledfx:${{ steps.get-ledfx-version.outputs.LEDFX_VERSION }}
labels: ${{ steps.meta.outputs.labels }}