bugfix: Set Github token when pushing changes (#351)

This commit is contained in:
gsilvestrin
2023-07-21 15:31:44 -07:00
committed by GitHub
parent 17cf244e53
commit 473c43860c
2 changed files with 10 additions and 0 deletions

View File

@@ -177,6 +177,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: main
persist-credentials: false
fetch-depth: 0
lfs: true
- uses: ./.github/workflows/update_package_lock
with:
github_token: ${{ secrets.LANCEDB_RELEASE_TOKEN }}

View File

@@ -9,6 +9,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: main
persist-credentials: false
fetch-depth: 0
lfs: true
- uses: ./.github/workflows/update_package_lock
with:
github_token: ${{ secrets.LANCEDB_RELEASE_TOKEN }}