Skip to content

Commit

Permalink
Fix paths. (#2288)
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMathWalker authored Feb 2, 2023
1 parent 20e12f6 commit 27429c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions tools/ci-scripts/upgrade-gradle-properties
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand All @@ -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

0 comments on commit 27429c8

Please sign in to comment.