diff options
author | Valentin Popov <info@valentineus.link> | 2020-06-26 00:13:12 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-06-26 00:13:12 +0300 |
commit | c388b41bf68e2610f9d7c3011721ece6ab1f3c14 (patch) | |
tree | a5fa7fbe6cbdecaacaa51b449671bb54b08dd103 /.github/workflows | |
parent | 184bff19e6eb2575c80fd919dc6a1e97a0842d65 (diff) | |
download | docker-meteor-c388b41bf68e2610f9d7c3011721ece6ab1f3c14.tar.xz docker-meteor-c388b41bf68e2610f9d7c3011721ece6ab1f3c14.zip |
Fixed path (again)
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/docker-publish.yml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 1981db1..de58ef6 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -5,9 +5,6 @@ on: branches: - master -env: - IMAGE_NAME: "valentineus/meteor" - jobs: push-latest: runs-on: ubuntu-latest @@ -18,7 +15,7 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} repository: valentineus/meteor - path: "release" + path: latest tag_with_ref: true tag_with_sha: true @@ -38,7 +35,7 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} tag: ${{ matrix.version }} repository: valentineus/meteor - path: "latest" - buildargs: "RELEASE=${{ matrix.version }}" + path: release + buildargs: RELEASE=${{ matrix.version }} tag_with_ref: true tag_with_sha: true
\ No newline at end of file |