Skip to content

Commit

Permalink
ci/nightly: fix path for upload (#19666)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Mar 18, 2024
1 parent a4a19f4 commit e7b7d5f
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,22 +57,15 @@ jobs:
env:
PKG_NAME: "lightning"
steps:
- uses: actions/checkout@v4 # needed for local action below
- uses: actions/download-artifact@v4
with:
name: nightly-packages-${{ github.sha }}
path: dist
- name: Browse folder
id: folder
run: |
sudo apt install -q -y tree
tree -L 2 -h dist/
python -c "print('pkg=' + '${{ env.PKG_NAME }}'.lower())" >> $GITHUB_OUTPUT
- uses: ./.github/actions/pkg-publish
with:
pkg-folder: dist/${{ steps.folder.outputs.pkg }}
pkg-folder: dist
pypi-test-token: ${{ secrets[format('PYPI_TEST_TOKEN_{0}', env.PKG_NAME)] }}
- uses: ./.github/actions/pkg-publish
with:
pkg-folder: dist/${{ steps.folder.outputs.pkg }}
pkg-folder: dist
pypi-token: ${{ secrets[format('PYPI_TOKEN_{0}', env.PKG_NAME)] }}

0 comments on commit e7b7d5f

Please sign in to comment.