Unverified Commit 27429c8b authored by Luca Palmieri's avatar Luca Palmieri Committed by GitHub
Browse files

Fix paths. (#2288)

parent 20e12f66
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -127,7 +127,7 @@ jobs:
      uses: ./smithy-rs/.github/actions/download-all-artifacts
    - name: Push gradle.properties changes
      id: gradle-push
      working-directory: artifacts
      working-directory: upgrade-gradle-properties/smithy-rs
      shell: bash
      env:
        SEMANTIC_VERSION: ${{ inputs.semantic_version }}
+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ set -eux

SEMANTIC_VERSION="${1}"
SMITHY_RS_DIR="$(pwd)/smithy-rs"
ARTIFACTS_DIR="$(pwd)/artifacts"
ARTIFACTS_DIR="$(pwd)/artifacts/upgrade-gradle-properties"
mkdir -p "${ARTIFACTS_DIR}"

pushd "${SMITHY_RS_DIR}"
@@ -24,5 +24,5 @@ popd
pushd "${ARTIFACTS_DIR}"
git clone "${SMITHY_RS_DIR}"
# Copy over the original remotes so that it's possible to push to `origin`
cp "${SMITHY_RS_DIR}/.git/config" .git/config
cp "${SMITHY_RS_DIR}/.git/config" smithy-rs/.git/config
popd