-
Notifications
You must be signed in to change notification settings - Fork 7
62 lines (55 loc) · 1.5 KB
/
deploy.yaml
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
---
name: Docker image
on:
push:
branches:
- main
schedule:
- cron: '11 1 18 * *'
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: Build and push Docker image
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: tobix
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Detect image metadata
id: meta
uses: docker/metadata-action@v5
with:
images: tobix/wine
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build stable
uses: docker/build-push-action@v5
with:
push: true
tags: tobix/wine:stable
labels: ${{ steps.meta.outputs.labels }}
build-args: |
WINE_FLAVOUR=stable
cache-to: type=local,dest=/tmp/buildx-cache,mode=max
- name: Build devel
uses: docker/build-push-action@v5
with:
push: true
tags: tobix/wine:devel
labels: ${{ steps.meta.outputs.labels }}
build-args: |
WINE_FLAVOUR=devel
cache-from: type=local,src=/tmp/buildx-cache
- name: Build staging
uses: docker/build-push-action@v5
with:
push: true
tags: tobix/wine:staging
labels: ${{ steps.meta.outputs.labels }}
build-args: |
WINE_FLAVOUR=staging
cache-from: type=local,src=/tmp/buildx-cache