Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Dec 7, 2023
1 parent 5bf94c6 commit b94a0ca
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/verify-staged-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

jobs:
verify-staged-with-samples:
Expand All @@ -35,11 +36,17 @@ jobs:
run: |
jf gradlec --repo-resolve libs-staging-local
echo 'allprojects {
printf "allprojects {
repositories {
maven { url "https://repo.spring.io/libs-staging-local" }
maven {
url 'https://repo.spring.io/libs-staging-local'
credentials {
username 'spring-builds'
password '$GITHUB_TOKEN'
}
}
}
}' > staging-repo-init.gradle
}" > staging-repo-init.gradle
sed -i "1,/springIntegrationVersion.*/s/springIntegrationVersion.*/springIntegrationVersion='${{ inputs.releaseVersion }}'/" build.gradle
Expand Down

0 comments on commit b94a0ca

Please sign in to comment.