We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 254016e commit 79e70bbCopy full SHA for 79e70bb
1 file changed
.github/workflows/ci.yml
@@ -36,7 +36,17 @@ jobs:
36
- name: build
37
run: "./build.sh"
38
env:
39
+ REMOTE_IMAGE: sqlstreamstore/server
40
LIBRARY_VERSION: ${{ matrix.env.library-version }}
41
CONTAINER_RUNTIME_VERSION: ${{ matrix.env.container-runtime-version }}
42
CONTAINER_RUNTIME: ${{ matrix.env.container-runtime }}
- RUNTIME: ${{ matrix.env.runtime }}
43
+ RUNTIME: ${{ matrix.env.runtime }}
44
+ - name: Docker Login
45
+ uses: actions/docker/login@master
46
+ if: github.event_name == 'push'
47
+ env:
48
+ DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
49
+ DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
50
+ - name: Docker Push
51
52
+ run: docker push sqlstreamstore/server
0 commit comments