Skip to content

ryohidaka/action-dump-sqlite

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

action-dump-sqlite

GitHub Release Test Action License

GitHub Actions to generate SQLite database dump files.

Usage

on: [push]

permissions:
  contents: write

jobs:
  dump-sql:
    runs-on: ubuntu-latest
    steps:
      - uses: ryohidaka/action-dump-sqlite@v0.1.0
        with:
          version: "3.43.2"
          db: "sample.db"
          output: "sample.sql"
          tables: "samples1, samples2"

Inputs

Input Description Required Default
version SQLite version to install. "latest"
db The name of the SQLite database file to use.
output The output file name for the SQL dump.
tables Comma-separated list of table names to dump. ""