more refactorings for atlas -> nimbl

This commit is contained in:
Daylin Morgan 2024-08-17 09:40:00 -05:00
parent 297e9037b2
commit ffc3de9bbb
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 3 additions and 7 deletions

View file

@ -38,7 +38,7 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-pnpm-store- ${{ runner.os }}-pnpm-store-
- uses: jiro4989/setup-nim-action@v1 - uses: jiro4989/setup-nim-action@v2
with: with:
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
@ -47,8 +47,8 @@ jobs:
- name: Build Website - name: Build Website
run: | run: |
nimble install -Y 'https://github.com/nim-lang/atlas.git@#f7ade65f' nimble setup -l
nim setup nimble install -d -Y
nim build nim build
- name: Upload artifact - name: Upload artifact

View file

@ -1,9 +1,5 @@
switch("backend","js") switch("backend","js")
task setup, "run atlas init":
exec "atlas init --deps=.workspace"
exec "atlas install"
task build, "build": task build, "build":
selfExec "js -o:site/app.js -d:release src/app.nim" selfExec "js -o:site/app.js -d:release src/app.nim"
exec "pnpm run build" exec "pnpm run build"