Skip to content

πŸ”— :: (#251) μ§€μ›ν˜„ν™© ν•©κ²©λœ νšŒμ‚¬ 클릭 μ‹œ 이벀트 처리 #7

πŸ”— :: (#251) μ§€μ›ν˜„ν™© ν•©κ²©λœ νšŒμ‚¬ 클릭 μ‹œ 이벀트 처리

πŸ”— :: (#251) μ§€μ›ν˜„ν™© ν•©κ²©λœ νšŒμ‚¬ 클릭 μ‹œ 이벀트 처리 #7

name: Move version to release branch
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: git merge to release
run: |
git config --global user.name 'Team return'
git config --global user.email '[email protected]'
git config pull.rebase false
git checkout -t origin/release
echo $(git merge -Xtheirs origin/develop)
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString ${{ github.ref_name }}" Projects/App/Support/Info.plist
git add -A
git commit -m "πŸš€ :: Deploy version ${{ github.ref_name }} to testflight"
git push