Skip to content

fix(deps): update dependency org.xerial:sqlite-jdbc to v3.45.2.0 #468

fix(deps): update dependency org.xerial:sqlite-jdbc to v3.45.2.0

fix(deps): update dependency org.xerial:sqlite-jdbc to v3.45.2.0 #468

Workflow file for this run

name: Gradle Deployment
on:
push:
branches:
- "main"
tags:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up JDK 21
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Gradle
uses: gradle/actions/[email protected]
- run: chmod +x ./gradlew
- name: Publish artifacts
run: ./gradlew publish -P box.release=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Generate Javadocs
run: ./gradlew aggregateJavadoc -P box.release=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Create top and not-found pages
run: |
cp -f assets/gh-pages.html staging/index.html
cp -f assets/gh-pages.html staging/404.html
- name: Deploy to GitHub Pages
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./staging
keep_files: true
allow_empty_commit: true