From 6866b19b9e0fa366a1a514b768bc5b89158772db Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Tue, 1 Dec 2020 06:21:14 +0100 Subject: [PATCH] Update ci workflow --- .github/workflows/ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e886b69..e2937c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,6 +82,12 @@ jobs: tag-semver: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + tag-latest: + - 'true' + - 'false' steps: - name: Checkout @@ -97,6 +103,7 @@ jobs: {{raw}} {{version}} {{major}}.{{minor}}.{{patch}} + tag-latest: ${{ matrix.tag-latest }} docker-push: runs-on: ubuntu-latest @@ -116,7 +123,10 @@ jobs: with: images: ${{ env.DOCKER_IMAGE }} tag-sha: true - tag-match: '\d{1,3}.\d{1,3}.\d{1,3}' + tag-semver: | + v{{version}} + v{{major}}.{{minor}} + v{{major}} - name: Set up QEMU uses: docker/setup-qemu-action@v1