Skip to content

Commit a497e0c

Browse files
committed
Create GitHub Actions workflow
1 parent 76d324e commit a497e0c

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

.github/workflows/build-docker-image-ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,5 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
-
13-
name: Composer cache
14-
uses: actions/cache@v2
15-
with:
16-
path: vendor
17-
key: composer-${{ hashFiles('composer.json') }}
18-
restore-keys: composer-${{ hashFiles('composer.json') }}
19-
- run: bin/ci/env
2012
- run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login --username steevanb --password-stdin
2113
- run: bin/ci/docker --push
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Build Docker image parallel-processes
2+
3+
on:
4+
workflow_dispatch: ~
5+
6+
jobs:
7+
build:
8+
name: Build Docker image parallel-processes
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login --username steevanb --password-stdin
13+
- run: bin/parallel-processes/docker --push

0 commit comments

Comments
 (0)