Skip to content

Commit

Permalink
ci: Fix one place where we commit to main (#1770)
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhii Tatarintsev authored Jun 18, 2024
1 parent f7f22a3 commit c286219
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/e2e_published_vsix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ jobs:
if: always()
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.PRISMA_BOT_TOKEN }}
- name: echo new version
run: echo ${{ needs.test.outputs.installed-extension }}
- name: Bump version
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2eTestsOnVsix/bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if [ "$ENVIRONMENT" = "PRODUCTION" ]; then
git remote add github "https://$GITHUB_ACTOR:$GH_TOKEN@github.com/$GITHUB_REPOSITORY.git" || true

git add -A .
git commit -m "bump tested_prisma_version to $NEW_TESTED_VERSION"
git commit -m "[skip ci] bump tested_prisma_version to $NEW_TESTED_VERSION"
echo "Sync with ${GITHUB_REF} and push to it"
git pull github "${GITHUB_REF}" --rebase
git add ./scripts/
Expand Down

0 comments on commit c286219

Please sign in to comment.