Skip to content

Commit

Permalink
remove explicit path
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Oct 18, 2024
1 parent fcef3f5 commit d4ebd9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref || github.ref }}
token: ${{ secrets.LASTMJS_GITHUB_TOKEN }}
token: ${{ secrets.LASTMJS_GITHUB_TOKEN || github.token }}

- id: get-version
run: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref || github.ref }}
token: ${{ secrets.LASTMJS_GITHUB_TOKEN }}
token: ${{ secrets.LASTMJS_GITHUB_TOKEN || github.token }}

- id: get-node-version
uses: ./.github/actions/get_node_version
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
# Push changes using PAT
echo "Pushing changes to $CURRENT_BRANCH"
git push https://$PAT@github.com/${{ github.repository }}.git HEAD:$CURRENT_BRANCH || {
git push origin HEAD:$CURRENT_BRANCH || {
echo "Failed to push changes"
exit 1
}
Expand Down

0 comments on commit d4ebd9b

Please sign in to comment.