Skip to content

Commit 6e218b8

Browse files
committed
Add Actions job that does a build test of Dockerfile.release
1 parent 0386241 commit 6e218b8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v1
18+
- uses: actions/checkout@v2
1919
- name: Build
2020
run: |
2121
docker build --tag bashbrew --pull .
@@ -28,3 +28,11 @@ jobs:
2828
./bashbrew list --uniq "$image"
2929
./bashbrew cat "$image"
3030
./bashbrew from --uniq "$image"
31+
release:
32+
name: Release (test)
33+
runs-on: ubuntu-latest
34+
steps:
35+
- uses: actions/checkout@v2
36+
- name: Build Dockerfile.release
37+
run: |
38+
docker build --pull --file Dockerfile.release .

0 commit comments

Comments
 (0)