Skip to content

update workflow

update workflow #56

Workflow file for this run

# 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@v2
# - name: Setup Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: '3.0.2'
# - name: Enable bundler cache
# uses: actions/cache@v3
# with:
# path: vendor/bundle
# key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
# restore-keys: |
# ${{ runner.os }}-gems-
# - name: Install deps
# run: |
# gem install bundler
# bundle config path vendor/bundle
# bundle install --jobs 4 --retry 3
# 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: Deploy website
# run: yes | bin/deploy --verbose ${{ steps.setup.outputs.NO_PUSH }}
# --src ${{ steps.setup.outputs.SRC_BRANCH }}
# --deploy ${{ steps.setup.outputs.DEPLOY_BRANCH }}
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@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.2'
- name: Enable bundler cache
uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install system dependencies (ImageMagick for rmagick)
run: |
sudo apt-get update
sudo apt-get install -y libmagickwand-dev
- name: Install deps
run: |
gem install bundler -v 2.5.25
bundle _2.5.25_ config path vendor/bundle
bundle _2.5.25_ install --jobs 4 --retry 3
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
echo "SRC_BRANCH=${GITHUB_HEAD_REF}" >> $GITHUB_OUTPUT
echo "NO_PUSH=--no-push" >> $GITHUB_OUTPUT
elif [[ ${GITHUB_REF} = refs/heads/* ]]; then
echo "SRC_BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
fi
echo "DEPLOY_BRANCH=gh-pages" >> $GITHUB_OUTPUT
- name: Deploy website
run: |
yes | bin/deploy --verbose ${{ steps.setup.outputs.NO_PUSH }}
--src ${{ steps.setup.outputs.SRC_BRANCH }}
--deploy ${{ steps.setup.outputs.DEPLOY_BRANCH }}