Skip to content

Commit ac6cdcc

Browse files
committed
Create GitHub Actions workflow
1 parent a497e0c commit ac6cdcc

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Build Docker image release
2+
3+
on:
4+
workflow_dispatch: ~
5+
6+
jobs:
7+
build:
8+
name: Build Docker image release
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/release/docker --push

bin/release/docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ source "${ROOT_DIR}"/bin/common.inc.bash
77

88
DOCKER_IMAGE_NAME="${RELEASE_DOCKER_IMAGE_NAME}" \
99
DOCKER_FILE_PATH="${ROOT_DIR}"/docker/release/Dockerfile \
10-
source "${ROOT_DIR}"/bin/docker-build.inc.bash
10+
source "${ROOT_DIR}"/bin/docker-build.inc.bash

0 commit comments

Comments
 (0)