all repos — litestore @ 98c6b8fd51275711114d628dc642a41ab43a283d

A minimalist nosql document store.

Update add-artifacts-to-current-release.yml
Fabio Cevasco h3rald@h3rald.com
Tue, 13 Apr 2021 22:32:30 +0200
commit

98c6b8fd51275711114d628dc642a41ab43a283d

parent

49c92077b05442af362205dbeea0cf69575c899f

1 files changed, 13 insertions(+), 5 deletions(-)

jump to
M .github/workflows/add-artifacts-to-current-release.yml.github/workflows/add-artifacts-to-current-release.yml

@@ -56,11 +56,19 @@ run: |

curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh sh init.sh -y - # Install HastyScribe - - name: Install HastyScribe + # Install HastyScribe (macOS/Linux) + - name: Install HastyScribe (macOS/Linux) run: | - nimble install nifty -y - nimble install hastyscribe -y + curl https://github.com/h3rald/hastyscribe/releases/download/v1.12.3/hastyscribe_v1.12.3_${{steps.os.outputs.id}}_x64.zip -sSf > hastyscribe.zip + unzip hastyscribe.zip + if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' + + # Install HastyScribe (Windows) + - name: Install HastyScribe (Windows) + run: | + curl https://github.com/h3rald/hastyscribe/releases/download/v1.12.3/hastyscribe_v1.12.3_${{steps.os.outputs.id}}_x64.zip -sSf > hastyscribe.zip + Expand-Archive -Path hastyscribe.zip -DestinationPath . + if: matrix.os == 'windows-latest' # Build for Linux - name: Build (Linux)

@@ -78,7 +86,7 @@ run: litestore -d:admin import

# Build guide - name: Build guide - run: ./build_guide + run: sh build_guide # Retrieve ID and Name of the current (draft) release - name: "Get current release"