Skip to content

Commit d7e26b5

Browse files
committed
Create GitHub Actions workflow
1 parent d0abe37 commit d7e26b5

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release
2+
3+
on:
4+
workflow_dispatch: ~
5+
6+
jobs:
7+
build:
8+
name: Build CI image
9+
runs-on: ubuntu-latest
10+
steps:
11+
- 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
20+
- run: docker login --username ${{ secrets.DOCKER_HUB_TOKEN }}
21+
- run: bin/ci/docker --push

0 commit comments

Comments
 (0)