Skip to content

fix: Camel K CRD file extraction fails #1

fix: Camel K CRD file extraction fails

fix: Camel K CRD file extraction fails #1

name: Build and Deploy to GH pages
on:
push:
branches:
- main
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
scope: '@kaoto'
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: 🛰️ Setup Pages
uses: actions/configure-pages@v3
- name: 🔧 Install dependencies
run: yarn
- name: Build @kaoto-next/ui web application
run: yarn workspace @kaoto-next/ui run build
- name: 📤 Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'packages/ui/dist/webapp'
- name: 🚀 Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2