Skip to content

Add script for integrating locale into an existing cdclient.sqlite DB… #82

Add script for integrating locale into an existing cdclient.sqlite DB…

Add script for integrating locale into an existing cdclient.sqlite DB… #82

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- name: Install Toolchain ⏩
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Generate Documentation 📚
uses: actions-rs/cargo@v1
with:
command: doc
args: --all --no-deps --all-features
- name: Add static files 🏷️
run: cp .gh-pages/* target/doc
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: target/doc
single-commit: true