Skip to content

Commit f90b7c1

Browse files
committed
fix actual mistake
1 parent c26e2ce commit f90b7c1

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/actions/version-bump-pr/action.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
run: |
3232
BRANCH=repo-tools-$NEW_VERSION
3333
34-
pushd $REPO
34+
cd $REPO
3535
echo "Creating branch: $BRANCH"
3636
git checkout -b $BRANCH
3737
@@ -65,6 +65,3 @@ runs:
6565
else
6666
echo "::warning::Existing pull request found: $EXISTING_PR"
6767
fi
68-
69-
echo "Resetting working dir:"
70-
popd

.github/workflows/run-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ jobs:
8484
pat: ${{ secrets.CI_USER_PAT }}
8585

8686
- name: Smithy Kotlin pull request
87-
uses: ./.github/actions/version-bump-pr@main
87+
uses: ./.github/actions/version-bump-pr
8888
with:
8989
repo: 'smithy-lang/smithy-kotlin'
9090
version: ${{ steps.resolve-new-version.outputs.NEW_VERSION }}
9191
pat: ${{ secrets.CI_USER_PAT }}
9292

9393
- name: CRT Kotlin pull request
94-
uses: ./.github/actions/version-bump-pr@main
94+
uses: ./.github/actions/version-bump-pr
9595
with:
9696
repo: 'aws/aws-crt-kotlin'
9797
version: ${{ steps.resolve-new-version.outputs.NEW_VERSION }}

0 commit comments

Comments
 (0)