Merge pull request #70 from SUSE/dependabot/bundler/asciidoctor-2.0.20 #24
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: Build the recipebook | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: run the build script | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0 | |
bundler-cache: true | |
- name: run the build script | |
run: bundle exec -- ./docbuild.sh | |
- name: deploy to github pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: build |