MySQL to SQLite3 Converter
ActionsTags
(1)Implements MySQL to SQLite3 as a docker utility
docker run --rm -v ${PWD}:/output benrowe/mysql-to-sqlite3 database_name username host.docker.internal password path/to/file
The github action runs this command inside the docker file, so the host will need to point to the host machien
- name: Convert to SQLite
  uses: benrowe/mysql-to-sqlite3-docker@v1
  with:
    output: /path/to/file
    database: database
    host: localhost
    username: root
    password: password
MySQL to SQLite3 Converter is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.