From 57e6b6779f7f88c540ab1a15626e30c3cc7d6d5c Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sun, 15 Mar 2020 01:08:41 -0700 Subject: [PATCH] Fix sed. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d1d0b46..2a1e931 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: body: '' draft: true prerelease: false - - name: Set up signing + - name: Setup Signing env: SIGNING_DATA: ${{ secrets.SIGNING_DATA }} SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} @@ -32,7 +32,7 @@ jobs: env: TAG_NAME: ${{ github.ref }} run: | - export CLEAN_TAG=$(echo $TAG_NAME | sed -e 's/v//') + export CLEAN_TAG=$(echo $TAG_NAME | sed -e 's/refs\/tags\/v//') sed -i '' -e "s/CI_VERSION = 0.0.0/CI_VERSION = $CLEAN_TAG/g" Config/Config.xcconfig - name: Build run: xcrun xcodebuild -project Secretive.xcodeproj -scheme Secretive -configuration Release -archivePath Archive.xcarchive archive