Skip to content

Commit

Permalink
build: fix CI build output path
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashornych committed Jan 6, 2024
1 parent aa7fdef commit ca92297
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: crystal spec spec/*.cr

- name: Build
run: crystal build --release src/main.cr -o ./dist/semantic-calendar-version
run: mkdir bin && crystal build --release src/main.cr -o bin/semantic-calendar-version

- name: Create release
id: create_release
Expand All @@ -69,5 +69,5 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/semantic-calendar-version
asset_path: ./bin/semantic-calendar-version
asset_name: semantic-calendar-version

0 comments on commit ca92297

Please sign in to comment.