File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 7272 run : |
7373 XCODEPROJ=$(find "$GITHUB_WORKSPACE/ios" -maxdepth 1 -name "*.xcodeproj" | head -n 1)
7474 if [ -z "$XCODEPROJ" ]; then
75- echo "Error: No .xcodeproj file found Elektronik in $GITHUB_WORKSPACE/ios"
75+ echo "Error: No .xcodeproj file found in $GITHUB_WORKSPACE/ios"
7676 exit 1
7777 fi
7878 XCODEPROJ_NAME=$(basename "$XCODEPROJ")
@@ -152,6 +152,7 @@ jobs:
152152 GITHUB_TOKEN : ${{ secrets.GITEATOKEN }}
153153 GH_TOKEN : ${{ secrets.GITEATOKEN }}
154154 run : |
155- gh release create "${{ github.ref_name }}" \
156- --title "${{ env.PRODUCT_NAME }} ${{ env.VERSION }}" \
157- --notes "Automated release\nVersion: ${{ env.VERSION }}\nBundle ID: ${{ env.BUNDLE_ID }}\nDownload IPA from Dropbox: ${{ env.SHAREABLE_LINK }}"
155+ TAG_NAME="v${{ env.VERSION }}"
156+ gh release create "$TAG_NAME" \
157+ --title "${{ env.PRODUCT_NAME }} ${{ env.VERSION }}" \
158+ --notes "Automated release\nVersion: ${{ env.VERSION }}\nBundle ID: ${{ env.BUNDLE_ID }}\nDownload IPA from Dropbox: ${{ env.SHAREABLE_LINK }}"
Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ jobs:
181181 GITHUB_TOKEN: ${{ secrets.GITEATOKEN }}
182182 GH_TOKEN: ${{ secrets.GITEATOKEN }}
183183 run: |
184- gh release create "${{ github.ref_name }}" \
185- --title "${{ env.PRODUCT_NAME }} ${{ env.VERSION }}" \
186- --notes "Automated release\nVersion: ${{ env.VERSION }}\nBundle ID: ${{ env.BUNDLE_ID }}\nDownload IPA from Dropbox: ${{ env.SHAREABLE_LINK }}"
184+ TAG_NAME="v${{ env.VERSION }}"
185+ gh release create "$TAG_NAME" \
186+ --title "${{ env.PRODUCT_NAME }} ${{ env.VERSION }}" \
187+ --notes "Automated release\nVersion: ${{ env.VERSION }}\nBundle ID: ${{ env.BUNDLE_ID }}\nDownload IPA from Dropbox: ${{ env.SHAREABLE_LINK }}"
You can’t perform that action at this time.
0 commit comments