Skip to content

Commit 9857485

Browse files
authored
ci: fix release workflow (#229)
1 parent 07c2263 commit 9857485

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ jobs:
8686
run: |
8787
outdir="./target/${{ env.TARGET_DIR }}/release"
8888
staging="${{ env.CRATE_NAME }}-${{ needs.create-release.outputs.release_version }}-${{ matrix.target }}"
89+
mkdir -p "$staging"
8990
cp {README.md,LICENSE-*,CHANGELOG.md} "$staging/"
9091
if [ "${{ matrix.os }}" = "windows-2019" ]; then
9192
cp "target/${{ matrix.target }}/release/${{ env.BIN_NAME }}.exe" "$staging/"

sqllogictest/src/column_type.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ pub trait ColumnType: Debug + PartialEq + Eq + Clone + Send + Sync {
1313
/// - 'T' - text, varchar results
1414
/// - 'I' - integers
1515
/// - 'R' - floating point numbers
16+
///
1617
/// Any other types are represented with `?`([`DefaultColumnType::Any`]).
1718
#[derive(Debug, PartialEq, Eq, Clone)]
1819
pub enum DefaultColumnType {

0 commit comments

Comments
 (0)