Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-gradle/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ runs:
ORG_GRADLE_PROJECT_signingPassword: ${{ fromJSON(steps.secrets.outputs.vault).PGP_PASSPHRASE }}
ORG_GRADLE_PROJECT_signingKeyId: ${{ fromJSON(steps.secrets.outputs.vault).SIGN_KEY_ID }}
working-directory: ${{ inputs.working-directory }}
run: ${GITHUB_ACTION_PATH}/build.sh
run: $ACTION_PATH_BUILD_GRADLE/build.sh

- name: Archive problems report
if: always()
Expand Down
2 changes: 1 addition & 1 deletion build-maven/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ runs:
ARTIFACTORY_PRIVATE_DEPLOY_REPO: ${{ steps.params.outputs.ARTIFACTORY_PRIVATE_DEPLOY_REPO }}
ARTIFACTORY_PRIVATE_DEPLOY_ACCESS_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).ARTIFACTORY_PRIVATE_DEPLOY_ACCESS_TOKEN }}
INSTALLED_ARTIFACTS: ${{ steps.build.outputs.installed-artifacts }}
run: ${GITHUB_ACTION_PATH}/deploy-artifacts.sh
run: $ACTION_PATH_BUILD_MAVEN/deploy-artifacts.sh

- name: Cleanup Maven repository before caching
if: inputs.cache-cleanup == 'true'
Expand Down
4 changes: 2 additions & 2 deletions config-gradle/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,15 @@ runs:
run: |
GRADLE_INIT_DIR="$GRADLE_USER_HOME/init.d"
mkdir -p "$GRADLE_INIT_DIR"
cp "${GITHUB_ACTION_PATH}/resources/repoxAuth.init.gradle.kts" "$GRADLE_INIT_DIR/"
cp "$ACTION_PATH_CONFIG_GRADLE/resources/repoxAuth.init.gradle.kts" "$GRADLE_INIT_DIR/"

- name: Update project version and set current-version and project-version variables
id: set-version
shell: bash
working-directory: ${{ inputs.working-directory }}
env:
SKIP: ${{ steps.config-gradle-completed.outputs.skip }}
run: ${GITHUB_ACTION_PATH}/set_gradle_project_version.sh
run: $ACTION_PATH_CONFIG_GRADLE/set_gradle_project_version.sh

- name: Deactivate UseContainerSupport on github-ubuntu-* runners
if: steps.config-gradle-completed.outputs.skip != 'true' && runner.os == 'Linux' && runner.environment == 'github-hosted'
Expand Down