Skip to content

Commit

Permalink
[mod] #312 google-services json 파일 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
sxunea committed Oct 27, 2024
1 parent 7265265 commit 2a5a3c2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/winey-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,13 @@ jobs:
echo "keyPassword=$KEY_PASSWORD" >> ./local.properties
echo "storePassword=$STORE_PASSWORD" >> ./local.properties
- name: Generate google-services.json
run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' | base64 --d > ./app/google-services.json
- name: Create Google Services JSON File
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $GOOGLE_SERVICES_JSON > ./app/google-services.json


# PR 제목에서 release v*.*.* 형식의 버전을 추출
# PR 제목에서 release v*.*.* 형식의 버전을 추출
- name: Extract Version Name
run: echo "##[set-output name=version;]v$(echo '${{ github.event.pull_request.title }}' | grep -oP 'release v\K[0-9]+\.[0-9]+\.[0-9]+')"
id: extract_version
Expand Down

0 comments on commit 2a5a3c2

Please sign in to comment.