Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spring Cloud Deployer Local
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
github
Spring Cloud
Spring Cloud Deployer Local
Commits
23dc2283
Commit
23dc2283
authored
3 years ago
by
Janne Valkealahti
Browse files
Options
Downloads
Patches
Plain Diff
Add release workflows
parent
ce541079
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/release-worker.yml
+119
-0
119 additions, 0 deletions
.github/workflows/release-worker.yml
with
119 additions
and
0 deletions
.github/workflows/release-worker.yml
0 → 100644
+
119
−
0
View file @
23dc2283
name
:
Release Worker
on
:
workflow_dispatch
:
inputs
:
build-zoo-handler
:
description
:
'
Build
Zoo
Handler
Payload'
required
:
true
jobs
:
build
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/setup-java@v1
with
:
java-version
:
1.8
-
uses
:
jvalkeal/setup-maven@v1
with
:
maven-version
:
3.6.3
-
uses
:
jfrog/setup-jfrog-cli@v1
with
:
version
:
1.46.4
env
:
JF_ARTIFACTORY_SPRING
:
${{ secrets.JF_ARTIFACTORY_SPRING }}
-
uses
:
actions/cache@v2
with
:
path
:
~/.m2/repository
key
:
${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys
:
|
${{ runner.os }}-m2-
# target deploy repos
-
name
:
Configure JFrog Cli
run
:
|
jfrog rt mvnc \
--server-id-deploy=repo.spring.io \
--repo-deploy-releases=libs-staging-local \
--repo-deploy-snapshots=libs-staging-local
echo JFROG_CLI_BUILD_NAME=spring-cloud-deployer-local-main-release >> $GITHUB_ENV
echo JFROG_CLI_BUILD_NUMBER=$GITHUB_RUN_NUMBER >> $GITHUB_ENV
# zoo extract and ensure
-
name
:
Extract Zoo Context Properties
uses
:
jvalkeal/build-zoo-handler@v0.0.4
with
:
dispatch-handler-extract-context-properties
:
true
ensure-env
:
|
BUILD_ZOO_HANDLER_spring_cloud_dataflow_build_version
BUILD_ZOO_HANDLER_spring_cloud_deployer_version
# build and publish to configured target
-
name
:
Build and Publish
run
:
|
jfrog rt mvn build-helper:parse-version versions:set \
-gs .github/settings.xml \
-Pstagingrelease \
-DprocessAllModules=true \
-DgenerateBackupPoms=false \
-Dartifactory.publish.artifacts=false \
-DnewVersion='${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}' \
-B
echo BUILD_ZOO_HANDLER_spring_cloud_deployer_local_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) >> $GITHUB_ENV
jfrog rt mvn versions:update-parent \
-gs .github/settings.xml \
-Pstagingrelease \
-DgenerateBackupPoms=false \
-DparentVersion='['${BUILD_ZOO_HANDLER_spring_cloud_deployer_version}']' \
-B
jfrog rt mvn versions:set-property \
-gs .github/settings.xml \
-Pstagingrelease \
-DgenerateBackupPoms=false \
-Dproperty=spring-cloud-deployer.version \
-DnewVersion=${BUILD_ZOO_HANDLER_spring_cloud_deployer_version} \
-B
jfrog rt build-clean
jfrog rt mvn clean install \
-gs .github/settings.xml \
-P-spring,stagingrelease \
-DskipTests -U -B
jfrog rt build-publish
echo BUILD_ZOO_HANDLER_spring_cloud_deployer_local_buildname=spring-cloud-deployer-local-main-release >> $GITHUB_ENV
echo BUILD_ZOO_HANDLER_spring_cloud_deployer_local_buildnumber=$GITHUB_RUN_NUMBER >> $GITHUB_ENV
# zoo tag
-
name
:
Tag Release
uses
:
jvalkeal/build-zoo-handler@v0.0.4
with
:
tag-release-branch
:
${{ env.BUILD_ZOO_HANDLER_spring_cloud_deployer_local_version }}
tag-release-tag
:
${{ env.BUILD_ZOO_HANDLER_spring_cloud_deployer_local_version }}
tag-release-tag-prefix
:
v
# zoo success
-
name
:
Notify Build Success Zoo Handler Controller
uses
:
jvalkeal/build-zoo-handler@v0.0.4
with
:
dispatch-handler-token
:
${{ secrets.SCDF_ACCESS_TOKEN }}
dispatch-handler-client-payload-data
:
>
{
"event": "build-succeed"
}
# zoo failure
-
name
:
Notify Build Failure Zoo Handler Controller
if
:
${{ failure() }}
uses
:
jvalkeal/build-zoo-handler@v0.0.4
with
:
dispatch-handler-token
:
${{ secrets.SCDF_ACCESS_TOKEN }}
dispatch-handler-client-payload-data
:
>
{
"event": "build-failed",
"message": "spring-cloud-deployer-local failed"
}
# clean m2 cache
-
name
:
Clean cache
run
:
|
find ~/.m2/repository -type d -name '*SNAPSHOT' | xargs rm -fr
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment