diff options
author | Valentin Popov <info@valentineus.link> | 2020-06-25 23:41:39 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-06-25 23:41:39 +0300 |
commit | 674d305033933a51ee0a739dc8c14decd379f2a6 (patch) | |
tree | 3153b646fa7c651cc88a9ae5edd080f83914a742 /.github/workflows | |
parent | 9bd7dc7e2b5591b9bba3965a7b51de67cb7a2aa6 (diff) | |
download | docker-meteor-674d305033933a51ee0a739dc8c14decd379f2a6.tar.xz docker-meteor-674d305033933a51ee0a739dc8c14decd379f2a6.zip |
Fixed matrix syntax
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/docker-publish.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 0eb53a7..a5bc284 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -14,15 +14,14 @@ jobs: strategy: matrix: - include: - version: ["1.10", "1.6"] + version: [1.10, 1.6] steps: - uses: docker/build-push-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - tag: ${{ matrix.include.version }} + tag: ${{ matrix.version }} repository: valentineus/meteor dockerfile: "default/release/Dockerfile" - buildargs: "RELEASE=${{ matrix.include.version }}"
\ No newline at end of file + buildargs: "RELEASE=${{ matrix.version }}"
\ No newline at end of file |