Update build.yml #3
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: Builder | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
vale: | |
name: runner / antora | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Generate site using antora site action" | |
uses: kameshsampath/[email protected] | |
with: | |
antora_playbook: antora-playbook.yml | |
# optional path within the repo, defaults to ${{github.workspace}} | |
site_sources_path: 'site-sources-folder' | |
- name: "Upload generated site" | |
uses: actions/[email protected] | |
with: | |
name: site | |
path: "${{ github.workspace }}/build/${{ env.SITE_DIR }}" |