Merge pull request #20 from tsuyoshicho/update/licensefile #5
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 vim help to gh-pages" | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
ghpages: | |
name: Convert and deploy vim help | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: generate html | |
uses: tsuyoshicho/action-vimhelp-html-generate@v1 | |
env: | |
FOLDER: build | |
- name: deploy gh-pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build |