0.3.8 #21
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: generate-doc | |
on: | |
release: | |
types: [published] | |
jobs: | |
generate-doc: | |
runs-on: macos-11 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
path: master | |
- name: Get tag | |
id: vars | |
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} | |
working-directory: master | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0.2 | |
bundler-cache: true | |
- name: Build doc | |
env: | |
RELEASE_VERSION: ${{steps.vars.outputs.tag}} | |
run: | | |
bundle install | |
bundle exec jazzy --clean --output .build/jazzy --author 'Outblock Team' --author_url https://github.com/outblock/flow-swift --github_url https://github.com/outblock/flow-swift --github-file-prefix https://github.com/outblock/flow-swift/tree/${RELEASE_VERSION} --module-version ${RELEASE_VERSION} --exclude 'Sources/Flow/Protobuf/*' | |
working-directory: master | |
- name: Checkout doc | |
uses: actions/checkout@v2 | |
with: | |
ref: gh-pages | |
path: gh-pages | |
- name: Clean old doc | |
run: rm -rf docs/current | |
working-directory: gh-pages | |
- name: Copy new doc | |
env: | |
G_WORKSPACE: ${{github.workspace}} | |
RELEASE_VERSION: ${{steps.vars.outputs.tag}} | |
run: | | |
mkdir -p docs/current | |
mkdir -p docs/$RELEASE_VERSION | |
cp -R ${G_WORKSPACE}/master/.build/jazzy/* docs/current | |
cp -R ${G_WORKSPACE}/master/.build/jazzy/* docs/$RELEASE_VERSION | |
working-directory: gh-pages | |
- name: Commit | |
env: | |
RELEASE_VERSION: ${{steps.vars.outputs.tag}} | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add . | |
git commit -m "generate ${RELEASE_VERSION} docs automatically" | |
git push | |
working-directory: gh-pages |