[ci] update actions #25
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
# This file is synced from rom-rb/template-gem repo | |
name: docsite | |
on: | |
push: | |
paths: | |
- docsite/** | |
- .github/workflows/docsite.yml | |
branches: | |
- main | |
- release-** | |
tags: | |
jobs: | |
update-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- run: | | |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/* | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "2.6.x" | |
- name: Set up git user | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "rom-bot" | |
- name: Install dependencies | |
run: gem install ossy --no-document | |
- name: Update release branches | |
run: | | |
branches=`git log --format=%B -n 1 $GITHUB_SHA | grep "docsite:release-" || echo "nothing"` | |
if [[ ! $branches -eq "nothing" ]]; then | |
for b in $branches | |
do | |
name=`echo $b | ruby -e 'puts gets[/:(.+)/, 1].gsub(/\s+/, "")'` | |
echo "merging $GITHUB_SHA to $name" | |
git checkout -b $name --track origin/$name | |
echo `git log -n 1` | |
git cherry-pick $GITHUB_SHA -m 1 | |
done | |
git push --all "https://rom-bot:${{secrets.GH_PAT}}@github.com/$GITHUB_REPOSITORY.git" | |
git checkout main | |
else | |
echo "no need to update branches" | |
fi | |
- name: Trigger rom-rb.org deploy | |
env: | |
GITHUB_LOGIN: rom-bot | |
GITHUB_TOKEN: ${{secrets.GH_PAT}} | |
run: ossy github workflow rom-rb/rom-rb.org ci |