Skip to content

Commit 7dbc43b

Browse files
committed
Windows: Only upload dll
1 parent 1cd3a96 commit 7dbc43b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/compile_sqlite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
uses: actions/upload-artifact@v4
131131
with:
132132
name: sqlite3-libs-${{ runner.os }}-${{ matrix.arch }}
133-
path: out/
133+
path: out/*.dll
134134
if-no-files-found: error
135135
retention-days: 1
136136

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,17 @@ jobs:
2727
with:
2828
artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }}
2929
path: sqlite/out
30-
- name: Verify asset hashes
31-
run: dart run tool/write_asset_hashes.dart "${{ steps.tag.outputs.tag }}"
32-
3330
- name: Set tag name
3431
id: tag
3532
run: |
3633
tag=$(basename "${{ github.ref }}")
3734
echo "tag=$tag" >> $GITHUB_OUTPUT
35+
36+
- name: Verify asset hashes
37+
run: dart run tool/write_asset_hashes.dart "${{ steps.tag.outputs.tag }}"
3838
- name: List libraries
3939
run: ls -al sqlite/out
40+
4041
- name: Create Release
4142
env:
4243
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)