File tree Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change 23
23
# duckdb_version: 1.1.2
24
24
# ci_tools_version: 1.1.2
25
25
# extension_name: chsql
26
+ # We have to build v1.2.0 based due to go-duckdb restrictions
27
+ duckdb-1-2-0-build :
28
+ name : Build extension binaries
29
+ uses :
duckdb/extension-ci-tools/.github/workflows/[email protected]
30
+ with :
31
+ duckdb_version : v1.2.0
32
+ ci_tools_version : v1.2.0
33
+ extension_name : chsql
26
34
27
35
duckdb-stable-build :
28
36
name : Build extension binaries
31
39
duckdb_version : v1.2.1
32
40
ci_tools_version : v1.2.1
33
41
extension_name : chsql
34
- process-artifacts :
42
+
43
+ process-all-artifacts :
35
44
name : Process Extension Artifacts
36
- needs : duckdb-stable-build
45
+ needs : [duckdb-1-2-0-build, duckdb-stable-build]
46
+ # if: github.event_name == 'release' && github.event.action == 'published'
37
47
runs-on : ubuntu-latest
38
48
steps :
39
49
- uses : actions/checkout@v4
@@ -46,10 +56,16 @@ jobs:
46
56
- name : List downloaded artifacts
47
57
run : |
48
58
mkdir to-upload; \
59
+ ls -la downloaded-artifacts; \
49
60
for l in `ls downloaded-artifacts`; do \
50
61
VER=`echo $l | cut -d '-' -f 2`; \
51
62
ARCH=`echo $l| cut -d '-' -f 4`; \
52
63
EXT=`ls downloaded-artifacts/$l | cut -b 7-`; \
53
64
mv downloaded-artifacts/$l/chsql.$EXT to-upload/chsql.$VER.$ARCH.$EXT; \
54
65
done; \
55
- ls -la to-upload
66
+ ls -la to-upload
67
+
68
+ # - name: Upload Release Assets
69
+ # uses: softprops/action-gh-release@v1
70
+ # with:
71
+ # files: to-upload/*
You can’t perform that action at this time.
0 commit comments