Skip to content

Commit

Permalink
Fix: filesの設定を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed May 30, 2024
1 parent d53d864 commit 3444a1c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,14 @@ jobs:
else
VERSION=${{ inputs.version }}
fi
if [[ $VERSION == *"-"* ]]; then
PRERELEASE=true
else
PRERELEASE=false
fi
echo "version=${VERSION}" >> $GITHUB_OUTPUT
echo "prerelease=${PRERELEASE}" >> $GITHUB_OUTPUT
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust
Expand Down Expand Up @@ -80,5 +86,6 @@ jobs:
- name: Create Release
uses: softprops/action-gh-release@v1
with:
prerelease: ${{ steps.version.outputs.prerelease }}
files: |
cantari-${{ steps.version.outputs.version }}${{ matrix.suffix }}.zip
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/cantari/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cantari"
version = "0.1.1"
version = "0.0.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit 3444a1c

Please sign in to comment.