From 5c8d0af2953ce37f35e18cfd60fa273b1501a299 Mon Sep 17 00:00:00 2001 From: Philipp Hoenisch Date: Fri, 14 Apr 2023 15:39:33 -0400 Subject: [PATCH] fix: use github ref_name Which should be the git tag --- .github/workflows/build-release-binaries.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index 7e4234d1c..2a1ae470b 100644 --- a/.github/workflows/build-release-binaries.yml +++ b/.github/workflows/build-release-binaries.yml @@ -16,7 +16,7 @@ jobs: uses: ./.github/workflows/docker.yml secrets: inherit with: - tag: ${{ github.event.release.target_commitish }} + tag: ${{ github.ref_name }} build_testflight_release: permissions: @@ -28,7 +28,7 @@ jobs: electrs_endpoint: blockstream.info:110 coordinator_p2p_endpoint: 022ae8dbec1caa4dac93f07f2ebf5ad7a5dd08d375b79f11095e81b065c2155156@34.30.20.202:9045 network: mainnet - tag: ${{ github.event.release.target_commitish }} + tag: ${{ github.ref_name }} build_android_apk: runs-on: macos-latest @@ -39,7 +39,7 @@ jobs: with: # fetch the complete history to correctly calculate build_number fetch-depth: 0 - tag: ${{ github.event.release.target_commitish }} + tag: ${{ github.ref_name }} # #499, https://github.com/actions/virtual-environments/issues/5595 - name: Configure ndk