Skip to content

we ball!

we ball! #15

Workflow file for this run

name: DEPLOY
on:
push:
paths:
- 'example-website/**'
- '.github/workflows/deploy.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
deploy-web:
name: Deploy EK Web Framework Example Website
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v2.3.4
- name: Setup NodeJS πŸͺ’
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install πŸ“₯
working-directory: example-website
run: npm install
- name: Build πŸ—οΈ
working-directory: example-website
run: npx ng build --configuration production --base-href /ek-web-framework/
- name: NoJekyll 🚫
working-directory: example-website
run: touch dist/example-website/browser/.nojekyll
- name: Setup Pages πŸ“„
uses: actions/configure-pages@v5
- name: Upload Artifact 🏺
uses: actions/upload-pages-artifact@v3
with:
path: example-website/dist/example-website/browser
- name: Deploy to GitHub Pages πŸš€
id: deployment
uses: actions/deploy-pages@v4