Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hlorenzi committed Oct 7, 2023
0 parents commit 14c0528
Show file tree
Hide file tree
Showing 16 changed files with 3,403 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build_ghpages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build GitHub Pages

on:
push:
branches: ["main"]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@master
with:
fetch-depth: 0

- name: Use Node.js 15.x
uses: actions/setup-node@v1
with:
node-version: 15.x

- run: git branch -D ghpages
continue-on-error: true

- run: git checkout -b ghpages
- run: rm .gitignore
- run: mv .gitignore.ghpages .gitignore
- run: npm ci
- run: npm run build
- run: git config user.name github-actions
- run: git config user.email [email protected]
- run: git add -A
- run: git commit -m "build GitHub Pages"
- run: git push -f origin ghpages
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules/
/.build/
1 change: 1 addition & 0 deletions .gitignore.ghpages
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules/
27 changes: 27 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>


<html>

<head>
<meta charset="utf-8"/>
<title>Vowel Analysis</title>
</head>


<style>
html, body {
margin: 0;
padding: 0;
}
</style>


<body>
<div id="app"></div>
</body>


<script src=".build/main.js"></script>

</html>
Loading

0 comments on commit 14c0528

Please sign in to comment.