Skip to content

Commit fc5b3bf

Browse files
committed
Another release attempt
1 parent 7dbc43b commit fc5b3bf

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,13 @@ jobs:
2525
- name: Download compiled sqlite3
2626
uses: actions/download-artifact@v5
2727
with:
28-
artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }}
28+
#artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }}
29+
# TODO: Ideally we'd use the artifacts compiled in this run. That should work once this has been merged to
30+
# the default branch, but it's unstable at the moment. fetch_sqlite will always re-compile on this branch
31+
# because caches from non-default branches aren't visible to runs on tags.
32+
# On windows, the sqlite3 build is not reproducible. So to avoid a hash mismatch, we temporarily use artifacts
33+
# built for a test run for releases as well.
34+
artifact-ids: "4333315590"
2935
path: sqlite/out
3036
- name: Set tag name
3137
id: tag

sqlite3/lib/src/hook/asset_hashes.dart

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
// dart format off
88
// ignore: unnecessary_nullable_for_final_variable_declarations
9-
const String? releaseTag = 'sqlite3-3.0.0-beta.0';
9+
const String? releaseTag = '3.0.0-beta.0';
1010

1111
const Map<String, String> assetNameToSha256Hash = {
1212
'android-aarch64-sqlite3.so': '3c7cb99727c6719a4a74fccb9da9b424f4facb135256af0b4c4a60ecb7fd0312',
@@ -40,21 +40,9 @@ const Map<String, String> assetNameToSha256Hash = {
4040
'sqlite3.wasm': '2f15c824a63503525e957c34454db27fc8122de374d71a6b0a743dc16d675cba',
4141
'sqlite3mc.wasm': 'a36530f62b28fa5f8abb2f569d575330e0a7735f7e8eec1bfebaeb0e27aa0016',
4242
'win-aarch64-sqlite3.dll': 'fbc381fc6a9f6135aa815c8522b4b81a2f47a4ac25f654ef6fac0b118be70592',
43-
'win-aarch64-sqlite3.exp': '8e7454fd1eb46789f402d001d664f2f4afc93e250daf3c3e465dc84ceebad6df',
44-
'win-aarch64-sqlite3.lib': '3acc324ef239e0719d962ba12b135e5ef5264630d2075c3e73c88edddbb9ea8a',
4543
'win-aarch64-sqlite3mc.dll': 'f8d57aa58befc0b3300d222977fccc036a251b2951bd87ffa3f879a71c05a84a',
46-
'win-aarch64-sqlite3mc.exp': '76ef578c98ede2102cae8b0cc15376563b1f4664f470070a1abd69a2b1f36fb6',
47-
'win-aarch64-sqlite3mc.lib': '838690c3dee378e455b6f8f8d6fd592f026478266a325dce9b73ceb70bee00b2',
4844
'win-x64-sqlite3.dll': '24ea06bc7fd08df2ade1e420b1bde0965016676904aca47963a2367f89f4fed7',
49-
'win-x64-sqlite3.exp': '3fb2e0223d6a7f69d9b2a8df7ef46092acec6152b6d0e5c7a961bd6f62d5a935',
50-
'win-x64-sqlite3.lib': '7001984b72cb2ad5cde657c712da38da1b6582b9a02ea92588ad172db11ac2d3',
5145
'win-x64-sqlite3mc.dll': '0dbc5d412d0b14f320482a664e4c160a896ef9d294d9429d30ed3f43321684aa',
52-
'win-x64-sqlite3mc.exp': 'cd42df6f2b952a2660176b4d4ca98d35d2a172b3d0ad025a3d075c75df3b13ea',
53-
'win-x64-sqlite3mc.lib': 'cff9ec6b4d170c397acc92c91338811a2396bf304de54bafa952065f6398a9cc',
5446
'win-x86-sqlite3.dll': '87155b39393a576a13c2e9b655a8e9a874e3f0a0cd165dd88d4ea6e42418745a',
55-
'win-x86-sqlite3.exp': 'ffa19c2be3d60af8ba078149013d60a617156b29669bb4385481b78a59e801e1',
56-
'win-x86-sqlite3.lib': '92c0cfb78b1ec84949716013b8bc5583fbaa8ba0bf89f0105334fe17f4bb02bf',
5747
'win-x86-sqlite3mc.dll': 'e99f8e735606cfc6110e9ba053f7387d6c66a88c81a742dbb88bf6f08607ca9d',
58-
'win-x86-sqlite3mc.exp': '1c30c0dd9f3d6c4270f162efe84895662c81cc85f2d37304c05074ecc53cffa1',
59-
'win-x86-sqlite3mc.lib': '820d8efc82e8b3496de8049153bbeeee143428349f22906ef003407c582b6fc9',
6048
};

0 commit comments

Comments
 (0)