build(deps-dev): bump credo from 1.7.9 to 1.7.10 #417
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: doc | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
generateDocs: | |
name: Generate project documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup elixir 🔧 | |
uses: erlef/setup-elixir@v1 | |
with: | |
otp-version: '26.0' | |
elixir-version: '1.16' | |
- name: Build docs 🔧 | |
uses: lee-dohm/generate-elixir-docs@v1 | |
- name: Publish to Pages 🚀 | |
uses: JamesIves/github-pages-deploy-action@3.7.1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: doc | |
CLEAN: true # Automatically remove deleted files from the deploy branch |