From ffc3de9bbbee1a4270c514c36ce48b8f089e167c Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Sat, 17 Aug 2024 09:40:00 -0500 Subject: [PATCH] more refactorings for atlas -> nimbl --- .github/workflows/docs.yml | 6 +++--- config.nims | 4 ---- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index aca0c04..765b8ed 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -38,7 +38,7 @@ jobs: restore-keys: | ${{ runner.os }}-pnpm-store- - - uses: jiro4989/setup-nim-action@v1 + - uses: jiro4989/setup-nim-action@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -47,8 +47,8 @@ jobs: - name: Build Website run: | - nimble install -Y 'https://github.com/nim-lang/atlas.git@#f7ade65f' - nim setup + nimble setup -l + nimble install -d -Y nim build - name: Upload artifact diff --git a/config.nims b/config.nims index 70b9980..8471699 100644 --- a/config.nims +++ b/config.nims @@ -1,9 +1,5 @@ switch("backend","js") -task setup, "run atlas init": - exec "atlas init --deps=.workspace" - exec "atlas install" - task build, "build": selfExec "js -o:site/app.js -d:release src/app.nim" exec "pnpm run build"