From c74256a27452d7db5cbe7bf31721f1bda7b752db Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 14 Aug 2024 15:21:39 +0800 Subject: [PATCH] Correct reference to build stub outputs. --- .github/workflows/update-binary.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-binary.yml b/.github/workflows/update-binary.yml index ed1fb35..6aa4c7f 100644 --- a/.github/workflows/update-binary.yml +++ b/.github/workflows/update-binary.yml @@ -93,11 +93,11 @@ jobs: - name: Create Release uses: ncipollo/release-action@v1.14.0 with: - name: ${{ jobs.build-stubs.outputs.BUILD_NUMBER }} - tag: ${{ jobs.build-stubs.outputs.BUILD_NUMBER }} + name: ${{ needs.build-stubs.outputs.BUILD_NUMBER }} + tag: ${{ needs.build-stubs.outputs.BUILD_NUMBER }} draft: true body: | - Build ${{ jobs.build-stubs.outputs.BUILD_NUMBER }} of the Briefcase macOS stub binary. + Build ${{ needs.build-stubs.outputs.BUILD_NUMBER }} of the Briefcase macOS stub binary. Includes support for Python 3.9-3.13.