Skip to content

Commit

Permalink
v1.0.202
Browse files Browse the repository at this point in the history
  • Loading branch information
yy0931 committed Feb 10, 2025
1 parent 2d743a7 commit ab37cc4
Show file tree
Hide file tree
Showing 5 changed files with 319 additions and 44 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
rustup target add ${{ matrix.target }}
cargo build --release --features sqlite --target ${{ matrix.target }}
cp target/${{ matrix.target }}/release/sqlite3-editor.exe sqlite3-editor-${{ matrix.vsce_target }}.exe
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.vsce_target }}.exe
path: sqlite3-editor-${{ matrix.vsce_target }}.exe
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Test
run: target/${{ matrix.target }}/release/sqlite3-editor.exe version
if: ${{ matrix.target == 'x86_64-win7-windows-msvc' }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.vsce_target }}.exe
path: sqlite3-editor-${{ matrix.vsce_target }}.exe
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
cross build --release --features sqlite --target ${{ matrix.target }}
cp target/${{ matrix.target }}/release/sqlite3-editor sqlite3-editor-${{ matrix.vsce_target }}
shell: bash
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.vsce_target }}
path: sqlite3-editor-${{ matrix.vsce_target }}
Expand All @@ -140,7 +140,7 @@ jobs:
cargo build --release --features sqlite --target ${{ matrix.target }}
cp target/${{ matrix.target }}/release/sqlite3-editor sqlite3-editor-${{ matrix.vsce_target }}
shell: bash
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.vsce_target }}
path: sqlite3-editor-${{ matrix.vsce_target }}
Expand All @@ -155,7 +155,7 @@ jobs:
- test
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
- run: |
for i in ./artifact-*/*
do cp -r "$i" .
Expand Down
75 changes: 44 additions & 31 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlite3-editor"
version = "1.0.201"
version = "1.0.202"
edition = "2021"

[features]
Expand Down
Loading

0 comments on commit ab37cc4

Please sign in to comment.