From 04e70e8abcd55c6072976e476dfd1dd9c38e5354 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sun, 27 Jun 2021 08:59:14 -0400 Subject: [PATCH] 1.0.10: fixes iteration bug --- .github/workflows/ci.yml | 8 ++++---- nimph.nimble | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c22ad8..b472344 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 with: - path: nimph + path: ci - name: Setup Nim uses: alaviss/setup-nim@0.1.1 @@ -53,7 +53,7 @@ jobs: shell: bash run: | mkdir $HOME/.nimble - cd nimph + cd ci git fetch --unshallow cp ci-bootstrap.cfg nim.cfg ./bootstrap-nonimble.sh test @@ -85,7 +85,7 @@ jobs: if: ${{ matrix.docs }} == 'true' shell: bash run: | - cd nimph + cd ci branch=${{ github.ref }} branch=${branch##*/} mv ci-docs.cfg nim.cfg @@ -110,6 +110,6 @@ jobs: matrix.os == 'ubuntu-latest' && matrix.nim == 'devel' uses: crazy-max/ghaction-github-pages@v1 with: - build_dir: nimph/docs + build_dir: ci/docs env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/nimph.nimble b/nimph.nimble index 349341c..ffada98 100644 --- a/nimph.nimble +++ b/nimph.nimble @@ -1,4 +1,4 @@ -version = "1.0.9" +version = "1.0.10" author = "disruptek" description = "nim package handler from the future" license = "MIT"