Skip to content

Commit

Permalink
プレフィックスの重複を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
s1204IT authored Jan 20, 2024
1 parent 0278e4f commit b98ee01
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,18 @@ jobs:
if: github.event.inputs.release == 'true'
run: |
if [[ "${{ secrets.STORE_FILE }}" == "" ]]; then
echo -e "\nERROR!\n\nリリースするには、 署名鍵を設定する必要があります。\n\n"
echo -e "\nERROR!\nリリースするには、 署名鍵を設定する必要があります。\n\n"
echo "STORE_FILE: JKS形式の署名鍵をBase64でエンコードした文字列"
echo "STORE_PASSWORD: キーストアのパスワード"
echo "KEY_ALIAS: 署名のエイリアス"
echo "KEY_PASSWORD: 署名のパスワード"
echo ""
exit 1
fi
if [[ "${{ steps.check-tag.outputs.exists }}" == "true" ]]; then
echo -e "\nERROR!\n\n既に同じタグが存在します。\n\n"
echo -e "\nERROR!\n既に同じタグが存在します。\n\n"
echo "build.gradle の versionName を変更してください"
echo ""
exit 1
fi
Expand All @@ -94,7 +96,7 @@ jobs:
uses: softprops/action-gh-release@v1
if: github.event.inputs.release == 'true'
with:
tag_name: v${{ env.version }}
tag_name: ${{ env.version }}
draft: true
prerelease: false
files: app/build/outputs/apk/release/app-release.apk

0 comments on commit b98ee01

Please sign in to comment.