Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Dec 25, 2023
1 parent 0af7b3e commit aee2a12
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit aee2a12

Please sign in to comment.