-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dev * dev deploy * more staging * CNAME * cname * index.staging.html * dev-deploy * index.staging.html * add whiletrue to dev sites * dev deploy * dev deploy * dev deploy * dev deploy * reject bot
- Loading branch information
Showing
10 changed files
with
214 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: Build projects | ||
|
||
on: | ||
push: | ||
branches: [ dev ] | ||
workflow_dispatch: | ||
jobs: | ||
build-server: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
- name: Build | ||
run: | | ||
git config --global user.email "adam.kariv@gmail.com" | ||
git config --global user.name "Adam Kariv" | ||
npm install -g npm@8 | ||
npm install | ||
./dev-deploy.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
budgetkey.whiletrue.industries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
git checkout dev && \ | ||
(git branch -D dist || true) && \ | ||
git checkout -b dist && \ | ||
rm .gitignore && \ | ||
cd utils && ./mk_bubbles.sh && cd .. && \ | ||
npm run build-dev && \ | ||
cp dist/budgetkey/browser/index.html dist/budgetkey/browser/404.html && \ | ||
cp CNAME dist/budgetkey/browser/ && \ | ||
git add dist/budgetkey/browser/ && \ | ||
git commit -m dist && \ | ||
(git branch -D gh-pages || true) && \ | ||
git subtree split --prefix dist/budgetkey/browser -b gh-pages && \ | ||
git push -f origin gh-pages:gh-pages && \ | ||
git checkout dev && \ | ||
git branch -D gh-pages && \ | ||
git branch -D dist && \ | ||
git checkout . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!doctype html> | ||
<html lang="he"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>מפתח התקציב</title> | ||
<base href="/"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/> | ||
<meta name="referrer" content="origin" /> | ||
<meta name="image" content="https://next.obudget.org/assets/common/img/obudget_key@2x.png"/> | ||
|
||
<link rel="icon" type="image/x-icon" href="favicon.ico"/> | ||
</head> | ||
<body> | ||
<app-root></app-root> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters