From 147a2defa0b6d5ace93b277f4152af7879058583 Mon Sep 17 00:00:00 2001 From: "niko.usai" Date: Fri, 10 Dec 2021 16:24:52 +0100 Subject: [PATCH] renamed pipelines and tag ref --- .github/workflows/api-release.yaml | 4 ++-- .github/workflows/import-engine-release.yaml | 4 ++-- .github/workflows/mongodb-sink-release.yaml | 4 ++-- .github/workflows/pages.yaml | 2 +- .github/workflows/parent-release.yaml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/api-release.yaml b/.github/workflows/api-release.yaml index 0ea9eddf..dabff78a 100644 --- a/.github/workflows/api-release.yaml +++ b/.github/workflows/api-release.yaml @@ -1,4 +1,4 @@ -name: Joyce API Docker Release +name: API Docker Release on: push: @@ -12,7 +12,7 @@ jobs: - name: Set VERSION id: vars run: | - echo "::set-output name=VERSION::$(echo ${GITHUB_REF#connect-})" + echo "::set-output name=VERSION::$(echo ${GITHUB_REF#api-})" echo "VERSION=${{steps.vars.outputs.VERSION}}" - uses: ./.github/actions/docker-publish with: diff --git a/.github/workflows/import-engine-release.yaml b/.github/workflows/import-engine-release.yaml index 55e3c8d3..71f9597b 100644 --- a/.github/workflows/import-engine-release.yaml +++ b/.github/workflows/import-engine-release.yaml @@ -1,4 +1,4 @@ -name: Build and Publish Import Gateway +name: Import Engine Docker Release on: push: @@ -17,7 +17,7 @@ jobs: - name: Set VERSION id: vars run: | - echo "::set-output name=VERSION::$(echo ${GITHUB_REF:10})" + echo "::set-output name=VERSION::$(echo ${GITHUB_REF#import-})" echo "VERSION=${{steps.vars.outputs.VERSION}}" - name: Build run: mvn --batch-mode --update-snapshots -Drevision=${{steps.vars.outputs.VERSION}} verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar diff --git a/.github/workflows/mongodb-sink-release.yaml b/.github/workflows/mongodb-sink-release.yaml index 48a77e3d..6c0cff78 100644 --- a/.github/workflows/mongodb-sink-release.yaml +++ b/.github/workflows/mongodb-sink-release.yaml @@ -1,4 +1,4 @@ -name: Build and Publish Mongodb Sink +name: Mongodb Sink Docker Release on: push: @@ -17,7 +17,7 @@ jobs: - name: Set VERSION id: vars run: | - echo "::set-output name=VERSION::$(echo ${GITHUB_REF:10})" + echo "::set-output name=VERSION::$(echo ${GITHUB_REF#sink-})" echo "VERSION=${{steps.vars.outputs.VERSION}}" - name: Build run: mvn --batch-mode --update-snapshots -Drevision=${{steps.vars.outputs.VERSION}} verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar diff --git a/.github/workflows/pages.yaml b/.github/workflows/pages.yaml index a900b350..f771503e 100644 --- a/.github/workflows/pages.yaml +++ b/.github/workflows/pages.yaml @@ -1,4 +1,4 @@ -name: documentation +name: Documentation Release on: push: diff --git a/.github/workflows/parent-release.yaml b/.github/workflows/parent-release.yaml index f3725f8f..cf7e16e4 100644 --- a/.github/workflows/parent-release.yaml +++ b/.github/workflows/parent-release.yaml @@ -1,4 +1,4 @@ -name: Publish Libraries +name: Libraries Release on: push: @@ -13,7 +13,7 @@ jobs: - name: Set VERSION id: vars run: | - echo "::set-output name=VERSION::$(echo ${GITHUB_REF#parent-})" + echo "::set-output name=VERSION::$(echo ${GITHUB_REF#libs-})" echo "VERSION=${{steps.vars.outputs.VERSION}}" - name: Publish package run: mvn --batch-mode -Drevision=${{steps.vars.outputs.VERSION}} deploy sonar:sonar