chore: Add E2E tests for Jira add issue sink Kamelet #89
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 |