add msrcr video #178
This file contains hidden or 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: deploy | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.1' | |
| bundler-cache: true | |
| bundler-version: 'latest' # added | |
| - name: Install deps | |
| run: | | |
| bundle clean --force | |
| bundle install | |
| npm install -g mermaid.cli | |
| - name: Setup deploy options | |
| id: setup | |
| run: | | |
| git config --global user.name "GitHub Action" | |
| git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| if [[ ${GITHUB_REF} = refs/pull/*/merge ]]; then # pull request | |
| echo "::set-output name=SRC_BRANCH::${GITHUB_HEAD_REF}" | |
| echo "::set-output name=NO_PUSH::--no-push" | |
| elif [[ ${GITHUB_REF} = refs/heads/* ]]; then # branch, e.g. master, source etc | |
| echo "::set-output name=SRC_BRANCH::${GITHUB_REF#refs/heads/}" | |
| fi | |
| echo "::set-output name=DEPLOY_BRANCH::gh-pages" | |
| # - name: Fix permission | |
| # run: | | |
| # chmod a+x bin/* | |
| # git commit -am "add execute permission to bin/deploy" | |
| - name: Deploy website | |
| run: yes | bash bin/deploy --verbose ${{ steps.setup.outputs.NO_PUSH }} | |
| --src ${{ steps.setup.outputs.SRC_BRANCH }} | |
| --deploy ${{ steps.setup.outputs.DEPLOY_BRANCH }} |