Skip to content

Ultra-Pro Final Release: Includes index.html and app.js #3

Ultra-Pro Final Release: Includes index.html and app.js

Ultra-Pro Final Release: Includes index.html and app.js #3

Workflow file for this run

name: Deploy Kaalka Website
on:
push:
branches:
- main
paths:
- 'website/**'
- '.github/workflows/deploy.yml'
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website
publish_branch: gh-pages
force_orphan: true