diff options
author | Valentin Popov <info@valentineus.link> | 2020-06-25 23:53:41 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-06-25 23:53:41 +0300 |
commit | 94f7b815c372fe9259be2ef99d06425a7b025a07 (patch) | |
tree | 253f2eccc0fe465ede8ce69024ec56e6ea207171 /.github/workflows | |
parent | 73f6ebf35cb3bb14274c4ae08878e8eb283f1248 (diff) | |
download | docker-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')
-rw-r--r-- | .github/workflows/docker-publish.yml | 12 |
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 |