Skip to content

Commit

Permalink
ci: fix release workflow (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan authored Jul 29, 2024
1 parent 07c2263 commit 9857485
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
run: |
outdir="./target/${{ env.TARGET_DIR }}/release"
staging="${{ env.CRATE_NAME }}-${{ needs.create-release.outputs.release_version }}-${{ matrix.target }}"
mkdir -p "$staging"
cp {README.md,LICENSE-*,CHANGELOG.md} "$staging/"
if [ "${{ matrix.os }}" = "windows-2019" ]; then
cp "target/${{ matrix.target }}/release/${{ env.BIN_NAME }}.exe" "$staging/"
Expand Down
1 change: 1 addition & 0 deletions sqllogictest/src/column_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ pub trait ColumnType: Debug + PartialEq + Eq + Clone + Send + Sync {
/// - 'T' - text, varchar results
/// - 'I' - integers
/// - 'R' - floating point numbers
///
/// Any other types are represented with `?`([`DefaultColumnType::Any`]).
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum DefaultColumnType {
Expand Down

0 comments on commit 9857485

Please sign in to comment.