-
Notifications
You must be signed in to change notification settings - Fork 10
61 lines (48 loc) · 1.32 KB
/
ext.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
55
56
57
58
59
60
61
name: 'ext'
on:
push:
paths:
- 'run.sh'
- 'cli/*'
- '.github/workflows/ext.yml'
- 'ls*.dockerfile'
- 'gui.dockerfile'
workflow_dispatch:
repository_dispatch:
types: [ ext ]
env:
DOCKER_BUILDKIT: 1
jobs:
ls:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build images
run: ./run.sh -l
- name: Deploy to DockerHub
if: github.event_name != 'pull_request' && github.repository == 'ghdl/docker'
uses: pyTooling/Actions/with-post-step@r0
with:
main: |
# Release
echo '${{ secrets.DOCKER_PASS }}' | docker login docker.io -u '${{ secrets.DOCKER_USER }}' --password-stdin
./run.sh ext
post: docker logout docker.io
gui:
needs: [ls]
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build images
run: ./run.sh -e gui
- name: Deploy to DockerHub
if: github.event_name != 'pull_request' && github.repository == 'ghdl/docker'
uses: pyTooling/Actions/with-post-step@r0
with:
main: |
# Release
echo '${{ secrets.DOCKER_PASS }}' | docker login docker.io -u '${{ secrets.DOCKER_USER }}' --password-stdin
./run.sh ext
post: docker logout docker.io