Remove unused antora doc processing (#342) #95
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: Publish Website | |
on: | |
push: | |
branches: | |
- main | |
- release-2.3.x | |
jobs: | |
publish-pages: | |
runs-on: ubuntu-latest | |
if: github.repository == 'openshift-integration/kamelet-catalog' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: release-2.3.x | |
- name: Build | |
run: | | |
cd docs | |
yarn install | |
yarn build | |
touch build/site/.nojekyll | |
- name: Publish | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs/build/site |