This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
🚀 :: v1.1.1 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Move version to main branch | |
on: | |
release: | |
types: [published] | |
jobs: | |
deploy: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set env | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: git merge to main | |
run: | | |
git config --global user.name 'hongsjae' | |
git config --global user.email 'gtw030488w@gmail.com' | |
git config pull.rebase false | |
git checkout -t origin/master | |
echo $(git merge -Xtheirs origin/release -m "🚀 :: Deploy version ${{ env.RELEASE_VERSION }} to AppStore") | |
git push |