Skip to content

Commit

Permalink
renamed pipelines and tag ref
Browse files Browse the repository at this point in the history
  • Loading branch information
niko.usai committed Dec 10, 2021
1 parent 2d425d6 commit 147a2de
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/api-release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Joyce API Docker Release
name: API Docker Release

on:
push:
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/import-engine-release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Publish Import Gateway
name: Import Engine Docker Release

on:
push:
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mongodb-sink-release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Publish Mongodb Sink
name: Mongodb Sink Docker Release

on:
push:
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: documentation
name: Documentation Release

on:
push:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/parent-release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Libraries
name: Libraries Release

on:
push:
Expand All @@ -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
Expand Down

0 comments on commit 147a2de

Please sign in to comment.