Merge pull request #124 from ArcBlock/fix-format #21
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: Prerelease | |
# 当提交不需要打版本的commit时,只需要不bump version,则后续fastlane action不会触发 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Start The Release | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# NOTE @v2 uses the token as an auth http header. Set it to | |
# a Personal Access Token instead of secrets.GITHUB_TOKEN | |
# so that tag pushes trigger repo push events. | |
token: ${{ secrets.ACCESS_TOKEN }} | |
- name: Start The Release | |
run: make release |