aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/docker-publish.yml
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-06-25 23:53:41 +0300
committerValentin Popov <info@valentineus.link>2020-06-25 23:53:41 +0300
commit94f7b815c372fe9259be2ef99d06425a7b025a07 (patch)
tree253f2eccc0fe465ede8ce69024ec56e6ea207171 /.github/workflows/docker-publish.yml
parent73f6ebf35cb3bb14274c4ae08878e8eb283f1248 (diff)
downloaddocker-meteor-94f7b815c372fe9259be2ef99d06425a7b025a07.tar.xz
docker-meteor-94f7b815c372fe9259be2ef99d06425a7b025a07.zip
Fixed path to Dockerfile
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '.github/workflows/docker-publish.yml')
-rw-r--r--.github/workflows/docker-publish.yml12
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml
index 273f67a..9bae190 100644
--- a/.github/workflows/docker-publish.yml
+++ b/.github/workflows/docker-publish.yml
@@ -18,7 +18,10 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: valentineus/meteor
- dockerfile: "latest/Dockerfile"
+ dockerfile: "Dockerfile"
+ path: "./latest"
+ tag_with_ref: true
+ tag_with_sha: true
push-release:
runs-on: ubuntu-latest
@@ -36,5 +39,8 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
tag: ${{ matrix.version }}
repository: valentineus/meteor
- dockerfile: "release/Dockerfile"
- buildargs: "RELEASE=${{ matrix.version }}" \ No newline at end of file
+ dockerfile: "Dockerfile"
+ path: "./release"
+ buildargs: "RELEASE=${{ matrix.version }}"
+ tag_with_ref: true
+ tag_with_sha: true \ No newline at end of file