From aee2a128e0515688cee407174e846f6bcec59b60 Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Mon, 25 Dec 2023 22:28:40 +0900 Subject: [PATCH] add --- .github/workflows/release.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cea1aa6..5f20d2c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,12 +9,18 @@ jobs: steps: - uses: actions/checkout@v4 - # steps for building assets - - run: echo "REPLACE ME!" > assets.txt + - name: Install Nim + id: install-nim + run: | + curl https://nim-lang.org/choosenim/init.sh -sSf | sh + export PATH="~/nimble/bin:$PATH" + echo $PATH - - name: Create a Release - id: create_release - uses: shogo82148/actions-create-release@v1 + - name: Compile Takajo + id: compile-takajo + run: | + nimble update + nimble build -d:release --threads:on # A release created by shogo82148/actions-create-release is alway draft here. # So users may not see an empty release.