-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DAT-15862 DevOps :: Release Rollback fails (#99)
* chore(extension-release-prepare.yml): update extension-release-prepare workflow to use the latest version of extension-release-rollback action chore(extension-release-prepare.yml): remove unused 'secrets: inherit' configuration from extension-release-rollback action * fix(extension-release-prepare.yml): save release files including pom.xml.releaseBackup and release.properties fix(pom-release-published.yml): update extension-release-prepare.yml workflow to use DAT-15862 version * fix(extension-release-rollback.yml): remove unnecessary arguments and fix formatting The `-DnewVersion` and `-Dtag` arguments were removed as they were not needed. Additionally, a newline was added at the end of the file for proper formatting. * fix(extension-release-prepare.yml): remove unnecessary build-helper:parse-version command in Maven release preparation step fix(extension-release-rollback.yml): correct typo in Maven release rollback step, change "versions:rever" to "versions:revert" * fix(extension-release-rollback.yml): correct typo in Maven command from 'rever' to 'revert' for proper release rollback functionality * chore(create-release.yml): update sonar-push.yml version to v0.5.0 for improved functionality chore(extension-attach-artifact-release.yml): update script file versions to v0.5.0 for improved functionality chore(extension-release-prepare.yml): update extension-release-rollback.yml version to v0.5.0 for improved functionality chore(extension-release-published.yml): update extension-release-prepare.yml version to v0.5.0 for improved functionality chore(os-extension-test.yml): update sonar-pull-request.yml version to v0.5.0 for improved functionality chore(package-deb.yml): update file versions to v0.5.0 for improved functionality chore(pom-release-published.yml): update extension-release-prepare.yml version to v0.5.0 for improved functionality chore(pro-extension-test.yml): update sonar-pull-request.yml version to v0.5.0 for improved functionality
- Loading branch information
Showing
9 changed files
with
19 additions
and
19 deletions.
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -54,10 +54,10 @@ jobs: | |
# Under the src folder is where specific packages files live. The GitHub action inputs will modify the universal package-deb-pom.xml to tell the process which assets to use during the packaging step | ||
mkdir -p $PWD/.github/src/${{ inputs.artifactId }}/deb/control | ||
mkdir -p $PWD/.github/src/${{ inputs.artifactId }}/main/archive | ||
curl -o $PWD/.github/src/${{ inputs.artifactId }}/deb/control/control https://raw.githubusercontent.com/liquibase/build-logic/v0.4.9/src/${{ inputs.artifactId }}/deb/control/control | ||
curl -o $PWD/.github/src/${{ inputs.artifactId }}/deb/control/postinst https://raw.githubusercontent.com/liquibase/build-logic/v0.4.9/src/${{ inputs.artifactId }}/deb/control/postinst | ||
curl -o $PWD/.github/src/${{ inputs.artifactId }}/main/archive/${{ inputs.artifactId }}-env.sh https://raw.githubusercontent.com/liquibase/build-logic/v0.4.9/src/${{ inputs.artifactId }}/main/archive/${{ inputs.artifactId }}-env.sh | ||
curl -o $PWD/.github/package-deb-pom.xml https://raw.githubusercontent.com/liquibase/build-logic/v0.4.9/.github/package-deb-pom.xml | ||
curl -o $PWD/.github/src/${{ inputs.artifactId }}/deb/control/control https://raw.githubusercontent.com/liquibase/build-logic/v0.5.0/src/${{ inputs.artifactId }}/deb/control/control | ||
curl -o $PWD/.github/src/${{ inputs.artifactId }}/deb/control/postinst https://raw.githubusercontent.com/liquibase/build-logic/v0.5.0/src/${{ inputs.artifactId }}/deb/control/postinst | ||
curl -o $PWD/.github/src/${{ inputs.artifactId }}/main/archive/${{ inputs.artifactId }}-env.sh https://raw.githubusercontent.com/liquibase/build-logic/v0.5.0/src/${{ inputs.artifactId }}/main/archive/${{ inputs.artifactId }}-env.sh | ||
curl -o $PWD/.github/package-deb-pom.xml https://raw.githubusercontent.com/liquibase/build-logic/v0.5.0/.github/package-deb-pom.xml | ||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
|
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
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