From 100490f1f2b0a75baa52401360ae3bc9aa1d4409 Mon Sep 17 00:00:00 2001 From: Elijah Date: Mon, 12 Feb 2024 19:32:29 +0100 Subject: [PATCH 1/2] Added token to download DIDKit wheel from private repo --- .gitea/workflows/ci-pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-pipeline.yaml b/.gitea/workflows/ci-pipeline.yaml index 13fbcaf..c519255 100644 --- a/.gitea/workflows/ci-pipeline.yaml +++ b/.gitea/workflows/ci-pipeline.yaml @@ -50,7 +50,7 @@ jobs: - name: Get DIDKit wheel id: didkit run: | - wget https://gitea.pangea.org/trustchain-oc1-orchestral/ssikit_trustchain/raw/branch/master/didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl + wget https://gitea.pangea.org/api/v1/repos/trustchain-oc1-orchestral/ssikit_trustchain/raw/didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl?token=${{ secrets.FILE_GETTER_TOKEN }} echo "Successfully downloaded DIDkit" - name: Install dependencies From a1d9db0445ac992444c2584f2a35d2909ff84406 Mon Sep 17 00:00:00 2001 From: Elijah Date: Mon, 12 Feb 2024 22:22:48 +0100 Subject: [PATCH 2/2] Changed filename to match name in requirements.txt --- .gitea/workflows/ci-pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-pipeline.yaml b/.gitea/workflows/ci-pipeline.yaml index c519255..02ba211 100644 --- a/.gitea/workflows/ci-pipeline.yaml +++ b/.gitea/workflows/ci-pipeline.yaml @@ -50,7 +50,7 @@ jobs: - name: Get DIDKit wheel id: didkit run: | - wget https://gitea.pangea.org/api/v1/repos/trustchain-oc1-orchestral/ssikit_trustchain/raw/didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl?token=${{ secrets.FILE_GETTER_TOKEN }} + wget -O didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl https://gitea.pangea.org/api/v1/repos/trustchain-oc1-orchestral/ssikit_trustchain/raw/didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl?token=${{ secrets.FILE_GETTER_TOKEN }} echo "Successfully downloaded DIDkit" - name: Install dependencies