endre til å oppfordre til bruk av python-oracledb i stedet for cx_oracle #381
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: documentation | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
gh-release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install mkdocs | |
run: pip install mkdocs mkdocs-pymdownx-material-extras mkdocs-build-plantuml-plugin | |
- name: Release to GitHub Pages | |
env: | |
GIT_USER: "x-actor" | |
GIT_PASS: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global user.name "$GITHUB_ACTOR" | |
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
mkdocs gh-deploy --force |