.github/workflows/cd.yml in convenient_service-0.15.0 vs .github/workflows/cd.yml in convenient_service-0.16.0
- old
+ new
@@ -28,31 +28,32 @@
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
- ruby-version: 3.1
+ ruby-version: 3.2
##
# NOTE: Installs the latest compatible Bundler version, runs `bundle install` and caches installed gems.
# - https://github.com/ruby/setup-ruby#usage
# - https://github.com/ruby/setup-ruby#bundler
#
bundler-cache: true
##
# NOTE: Installs Task (task runner).
- # https://taskfile.dev/installation/#github-actions
- # https://github.com/go-task/task
+ # - https://taskfile.dev/installation/#github-actions
+ # - https://github.com/go-task/task
#
- name: Install Task (task runner)
uses: arduino/setup-task@v1
- name: Generate docs
working-directory: ./
run: task docs:generate
- name: Deploy docs to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./docs
+ publish_dir: ./docs/api
+ cname: apidocs.convenientservice.org
create_github_release:
runs-on: ubuntu-20.04
name: Create GitHub Release PR
steps: