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 0e8752b commit 50f1d0fCopy full SHA for 50f1d0f
.editorconfig
@@ -7,4 +7,7 @@ insert_final_newline = true
7
trim_trailing_whitespace = true
8
insert_final_newline = true
9
indent_style = space
10
-indent_size = 4
+indent_size = 4
11
+
12
+[{*.yml,*.yaml}]
13
+indent_size = 2
.github/workflows/build.yml
@@ -0,0 +1,21 @@
1
+name: Dockerhub Deploy
2
3
+on:
4
+ push:
5
+ branches:
6
+ - master
+jobs:
+ deploy:
+ name: Deploy
+ runs-on: ubuntu-latest
+ steps:
14
+ - name: Build
15
+ uses: docker/build-push-action@v1
16
+ with:
17
+ username: ${{ secrets.DOCKER_USERNAME }}
18
+ password: ${{ secrets.DOCKER_PASSWORD }}
19
+ repository: benrowe/mysql-to-sqlite3
20
+ tags: latest
21
0 commit comments