diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 4d12b94..ea9fa5a 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -23,6 +23,14 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - name: Pull github provider + id: pull-github-provider + uses: stackql/stackql-exec@v2.2.3 + with: + query: | + REGISTRY PULL github + is_command: true + - name: Fetch contributors id: get-contributors uses: stackql/stackql-exec@v2.2.3 diff --git a/Cargo.lock b/Cargo.lock index 1ff773a..206926f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2011,7 +2011,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stackql-deploy" -version = "0.1.0" +version = "2.0.0" dependencies = [ "base64", "chrono", diff --git a/ci-scripts/get-contributors.iql b/ci-scripts/get-contributors.iql index 50849ed..3e44756 100644 --- a/ci-scripts/get-contributors.iql +++ b/ci-scripts/get-contributors.iql @@ -9,7 +9,12 @@ UNION SELECT login, contributions FROM github.repos.contributors WHERE owner = 'stackql' -AND repo = 'stackql-deploy') t +AND repo = 'stackql-deploy' +UNION +SELECT login, contributions +FROM github.repos.contributors +WHERE owner = 'stackql' +AND repo = 'stackql-deploy-rs') t GROUP BY login ORDER BY total_contributions DESC -) t1 \ No newline at end of file +) t1