Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #45

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
e8ecdde
shitload of new tracks
baskeboler Dec 12, 2020
73b11a0
extracted stats display row to component
baskeboler Dec 13, 2020
04a3414
add new song tags
baskeboler Dec 14, 2020
97ecfa1
fix last deploy
baskeboler Dec 14, 2020
ee9c0d0
add backgrounds
baskeboler Dec 14, 2020
6e9e156
remove bg animations
baskeboler Dec 14, 2020
6725b0a
moved lyrics to this project
baskeboler Dec 15, 2020
016af06
moved lyrics to current project
baskeboler Dec 15, 2020
a1a7386
moved lyrics into project
baskeboler Dec 21, 2020
3276eb2
performance improvements
baskeboler Dec 23, 2020
e05fdf1
fix typo
baskeboler Dec 23, 2020
5f1ea76
enable bg settings and sync btn icons
baskeboler Dec 23, 2020
57696fe
fix no bg
baskeboler Dec 23, 2020
ee3f9c2
added ffmpeg wasm dependency and bg settings
baskeboler Jan 15, 2021
7269763
added loop video resources and refactored editor out into its own module
baskeboler Jan 16, 2021
fd02ce4
undo editor module refactor
baskeboler Jan 16, 2021
3cbce46
update deps
baskeboler Nov 5, 2022
2fc4d0c
deps
baskeboler Nov 5, 2022
96c6486
version bump dep
baskeboler Nov 5, 2022
9d74132
bump dep
baskeboler Mar 31, 2023
fb1236d
deps
baskeboler Mar 31, 2023
0af4022
deps
baskeboler Mar 31, 2023
8b276e6
replace node-sass
baskeboler Mar 31, 2023
32d04f5
Merge branch 'master' into develop
baskeboler Mar 31, 2023
9b69f37
Merge pull request #46 from baskeboler/master
baskeboler Mar 31, 2023
0cff976
gh action
baskeboler Mar 31, 2023
23481ca
Update clojure.yml
baskeboler Mar 31, 2023
f8f1922
Update clojure.yml
baskeboler Mar 31, 2023
8d43024
Update clojure.yml
baskeboler Mar 31, 2023
1a70a96
Update clojure.yml
baskeboler Mar 31, 2023
b8d64e0
upgrade dep
baskeboler Apr 14, 2023
e515ec1
gh action build
baskeboler Aug 7, 2023
b9c56b3
deploy to gh pages
baskeboler Aug 7, 2023
a6aa675
configure gh pages
baskeboler Aug 8, 2023
35c3c55
relative urls
baskeboler Aug 8, 2023
d15c087
relative urls
baskeboler Aug 8, 2023
19467c4
relative paths, miration to gh pages wip
baskeboler Aug 8, 2023
669b3e4
relative paths, miration to gh pages wip
baskeboler Aug 8, 2023
fd5d616
fix
baskeboler Oct 26, 2023
411ff15
space
baskeboler Oct 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
41 changes: 37 additions & 4 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,51 @@ name: Clojure CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
branches: [ "master", "develop" ]


jobs:
build:

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}


runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: npm i
- name: release
run: shadow-cljs release app
run: npm run release
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./public
- name: Deploy to gh pages
id: deployment
uses: actions/deploy-pages@v2
# - name: Netlify Actions
# # You may pin to the exact commit or the version.
# # uses: nwtgck/actions-netlify@5da65c9f74c7961c5501a3ba329b8d0912f39c03
# uses: nwtgck/[email protected]
# with:
# # Publish directory
# publish-dir: public
# # Production branch
# production-branch: master
# # Indicate wether to deploy production build
# production-deploy: true
# env:
# NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
# NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
# timeout-minutes: 1

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ node_modules
.shadow-cljs/
.nrepl-port
/public/
.clj-kondo/
*.log
.lsp
Loading