ajoute un role ARIA à la div wrapper de modale du header (#173) #110
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: Deploy Guide to GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
rspec: | |
runs-on: ubuntu-latest | |
name: Deploy Guide | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Ruby & gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
ruby-version: 3.1.2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: make build-guide | |
- name: Deploy to GH Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
publish_dir: ./guide/output | |
github_token: ${{ secrets.GITHUB_TOKEN }} |