Skip to content

Commit 76d324e

Browse files
committed
Fix GitHub Actions worfklow
1 parent d7e26b5 commit 76d324e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: Release
1+
name: Build Docker image ci
22

33
on:
44
workflow_dispatch: ~
55

66
jobs:
77
build:
8-
name: Build CI image
8+
name: Build Docker image ci
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
@@ -17,5 +17,5 @@ jobs:
1717
key: composer-${{ hashFiles('composer.json') }}
1818
restore-keys: composer-${{ hashFiles('composer.json') }}
1919
- run: bin/ci/env
20-
- run: docker login --username ${{ secrets.DOCKER_HUB_TOKEN }}
20+
- run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login --username steevanb --password-stdin
2121
- run: bin/ci/docker --push

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
### master
22

3+
- Automatically build and push Docker image `steevanb/php-parallel-processes:ci`
4+
35
### [0.2.1](../../compare/0.2.0...0.2.1) - 2022-01-08
46

57
- Fix `bin/release/code-lines` who find code lines in `.idea` (directory of PhpStorm)

0 commit comments

Comments
 (0)