forked from elastic/apm-agent-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,10 +60,11 @@ jobs: | |
run: ./mvnw release:prepare -B -DpushChanges=false "-Darguments=-DskipTests -Dmaven.javadoc.skip=true" -DreleaseVersion=${{ inputs.version }} | ||
- run: git push --atomic origin ${{ inputs.branch }} v${{ inputs.version }} | ||
|
||
|
||
await_artifact_on_maven_central: | ||
name: "Wait for artifacts to be available on maven central" | ||
runs-on: ubuntu-latest | ||
#TODO: disabled for now | ||
if: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- shell: bash | ||
|
@@ -73,3 +74,20 @@ jobs: | |
echo "Artifacts not found on maven central. Sleeping 10 seconds, retrying afterwards" | ||
sleep 10s | ||
done | ||
update_cloudfoundry: | ||
name: "Update Cloudfoundry" | ||
runs-on: ubuntu-latest | ||
#TODO: disabled for now | ||
if: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
#TODO: Use apmmachine + setup authorization (SSH?) | ||
- name: Set up git user | ||
run: | | ||
git config user.name todo-github-actions | ||
git config user.email [email protected] | ||
- name: "Update Cloudfoundry index.yml file" | ||
shell: bash | ||
run: .ci/release/update_cloudfoundry.sh ${{ inputs.version }} | ||
- run: git push origin main |