We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf9b138 commit fb290f1Copy full SHA for fb290f1
action.yml
@@ -1,5 +1,6 @@
1
name: MySQL to SQLite3 Converter
2
description: Connect to mysql and convert to sqlite3 file
3
+author: "[email protected]"
4
5
inputs:
6
output:
@@ -18,10 +19,22 @@ inputs:
18
19
description: mysql password
20
required: true
21
22
+outputs:
23
+ file:
24
+ description: The file that is generated
25
+
26
runs:
27
using: docker
28
image: Dockerfile
29
+ args:
30
+ - ${{ inputs.host }}
31
+ - ${{ inputs.database }}
32
+ - ${{ inputs.username }}
33
+ - ${{ inputs.password }}
34
+ - ${{ inputs.output }}
35
+ post-entrypoint: gh-output.sh
36
37
branding:
- icon: "mic"
38
+ icon: "filter"
39
color: "blue"
40
gh-output.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+echo "::file::/path/to/dir"
0 commit comments