From 3fb9aa548f62eca1194e9f25c33c7013a7d138c5 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Fri, 14 Apr 2023 08:51:43 +0800 Subject: [PATCH] Tweak CI release script. --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94d142ef..0d9b6a9f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: - name: Get packages uses: actions/download-artifact@v3.0.2 with: - name: packages + name: ${{ needs.ci.outputs.artifact-name }} path: dist - name: Install packages @@ -52,7 +52,7 @@ jobs: test-publish: name: Publish test package - needs: [release] + needs: [ci, release] runs-on: ubuntu-latest permissions: contents: write @@ -60,7 +60,7 @@ jobs: - name: Get packages uses: actions/download-artifact@v3.0.2 with: - name: packages + name: ${{ needs.ci.outputs.artifact-name }} path: dist - name: Publish release to Test PyPI