Skip to content

Commit 1cdbed0

Browse files
authored
Merge pull request #26 from stackql-labs/feature/updates
Updated CI
2 parents b7c49dc + ef9ea5a commit 1cdbed0

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

.github/workflows/release-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ jobs:
2323
- name: Checkout repository
2424
uses: actions/checkout@v6
2525

26+
- name: Pull github provider
27+
id: pull-github-provider
28+
uses: stackql/stackql-exec@v2.2.3
29+
with:
30+
query: |
31+
REGISTRY PULL github
32+
is_command: true
33+
2634
- name: Fetch contributors
2735
id: get-contributors
2836
uses: stackql/stackql-exec@v2.2.3

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ci-scripts/get-contributors.iql

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ UNION
99
SELECT login, contributions
1010
FROM github.repos.contributors
1111
WHERE owner = 'stackql'
12-
AND repo = 'stackql-deploy') t
12+
AND repo = 'stackql-deploy'
13+
UNION
14+
SELECT login, contributions
15+
FROM github.repos.contributors
16+
WHERE owner = 'stackql'
17+
AND repo = 'stackql-deploy-rs') t
1318
GROUP BY login
1419
ORDER BY total_contributions DESC
15-
) t1
20+
) t1

0 commit comments

Comments
 (0)