Skip to content

fix: add dot

fix: add dot #34

Workflow file for this run

name: Auto-Publish
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build and Validate
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-java
- name: build java
run: |
cd artifacts
./gradlew build
./gradlew generateTablesFromSchemas
cd ..
- name: Copy files for correct web access
run: |
chmod +x ./.github/workflows/script.sh
./.github/workflows/script.sh
- uses: actions/upload-pages-artifact@v3
with:
path: .
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4