-
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1.12 KB
/
main.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
name: reusing workflow
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
workflow_dispatch:
jobs:
debian_stable:
uses: cafe-desktop/cafe-common/.github/workflows/main.yml@master
with:
image_name: lapiz
tag: $GITHUB_RUN_NUMBER
secrets:
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
DOCKER_HUB_DISTRO: debian:stable
GH_PAGES_DEPLOY: 'false'
debian_testing:
uses: cafe-desktop/cafe-common/.github/workflows/main.yml@master
with:
image_name: lapiz
tag: $GITHUB_RUN_NUMBER
secrets:
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
debian_sid:
uses: cafe-desktop/cafe-common/.github/workflows/main.yml@master
with:
image_name: lapiz
tag: $GITHUB_RUN_NUMBER
secrets:
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
DOCKER_HUB_DISTRO: debian:sid
GH_PAGES_DEPLOY: 'false'