Added push latest
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
674d305033
commit
73f6ebf35c
19
.github/workflows/docker-publish.yml
vendored
19
.github/workflows/docker-publish.yml
vendored
@ -9,12 +9,25 @@ env:
|
|||||||
IMAGE_NAME: "valentineus/meteor"
|
IMAGE_NAME: "valentineus/meteor"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
push:
|
push-latest:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: docker/build-push-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
repository: valentineus/meteor
|
||||||
|
dockerfile: "latest/Dockerfile"
|
||||||
|
|
||||||
|
push-release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
version: [1.10, 1.6]
|
version:
|
||||||
|
- "1.10"
|
||||||
|
- "1.6"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: docker/build-push-action@v1
|
- uses: docker/build-push-action@v1
|
||||||
@ -23,5 +36,5 @@ jobs:
|
|||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
tag: ${{ matrix.version }}
|
tag: ${{ matrix.version }}
|
||||||
repository: valentineus/meteor
|
repository: valentineus/meteor
|
||||||
dockerfile: "default/release/Dockerfile"
|
dockerfile: "release/Dockerfile"
|
||||||
buildargs: "RELEASE=${{ matrix.version }}"
|
buildargs: "RELEASE=${{ matrix.version }}"
|
Loading…
x
Reference in New Issue
Block a user