ci: add checkout step to publish to pypi steps in nightly workflow (#9280)
Add checkout step to publish to pypi steps in nightly workflow
This commit is contained in:
parent
938d35812b
commit
8e4577f0a7
1 changed files with 4 additions and 0 deletions
4
.github/workflows/release_nightly.yml
vendored
4
.github/workflows/release_nightly.yml
vendored
|
|
@ -221,6 +221,8 @@ jobs:
|
|||
needs: [build-nightly-base, test-cross-platform]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
- name: Download base artifact
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
|
|
@ -244,6 +246,8 @@ jobs:
|
|||
needs: [build-nightly-main, test-cross-platform, publish-nightly-base]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
- name: Download main artifact
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue