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 90807ff commit abbbf8fCopy full SHA for abbbf8f
.gitignore
@@ -2,7 +2,7 @@ package-lock.json
2
.DS_Store
3
node_modules
4
/dist
5
-build.sh
+
6
7
8
# local env files
build.sh
@@ -0,0 +1,11 @@
1
+#!/usr/bin/env fish
+npm run build &&
+ cd ../digital-menu-build/ &&
+ git init &&
+ git add . &&
+ git commit -m "deploy" &&
+ git remote add origin https://github.com/pizzariacolosso/digital-menu.git &&
9
+ git push --force "https://$GIT_USERNAME:$GIT_PASSWORD@github.com/pizzariacolosso/digital-menu.git" master &&
10
+ cd ../ && rm -rf digital-menu-build/
11
0 commit comments