Skip to content

Commit 3ddcfda

Browse files
Merge pull request #35 from Chia-Network/develop
Release 0.0.13
2 parents 67b494b + 008c303 commit 3ddcfda

File tree

5 files changed

+1351
-662
lines changed

5 files changed

+1351
-662
lines changed

.github/workflows/build-installers.yaml

+9-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ concurrency:
1515
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == 'refs/heads/main' && github.sha || '' }}
1616
cancel-in-progress: true
1717

18+
permissions:
19+
id-token: write
20+
contents: write
21+
1822
env:
1923
APP_NAME: core-registry-ui
2024

@@ -249,7 +253,10 @@ jobs:
249253
run: |
250254
echo "REPO_NAME=$(echo "$GITHUB_REPOSITORY" | cut -d "/" -f 2)" >>$GITHUB_OUTPUT
251255
256+
- name: Gets JWT Token from GitHub
257+
uses: Chia-Network/actions/github/jwt@main
258+
252259
- name: Trigger apt repo update
253260
run: |
254-
curl -s -XPOST -H "Authorization: Bearer ${{ secrets.GLUE_ACCESS_TOKEN }}" --data '{"climate_tokenization_repo":"${{ steps.repo-name.outputs.REPO_NAME }}","application_name":"[\"$APP_NAME\"]","release_version":"${{ steps.tag-name.outputs.TAGNAME }}","add_debian_version":"true","arm64":"false"}' ${{ secrets.GLUE_API_URL }}/api/v1/climate-tokenization/${{ github.sha }}/start
255-
curl -s -XPOST -H "Authorization: Bearer ${{ secrets.GLUE_ACCESS_TOKEN }}" --data '{"climate_tokenization_repo":"${{ steps.repo-name.outputs.REPO_NAME }}","application_name":"[\"$APP_NAME\"]","release_version":"${{ steps.tag-name.outputs.TAGNAME }}","add_debian_version":"true","arm64":"false"}' ${{ secrets.GLUE_API_URL }}/api/v1/climate-tokenization/${{ github.sha }}/success/deploy
261+
curl -s -XPOST -H "Authorization: Bearer ${{ env.JWT_TOKEN }}" --data '{"climate_tokenization_repo":"${{ steps.repo-name.outputs.REPO_NAME }}","application_name":"[\"$APP_NAME\"]","release_version":"${{ steps.tag-name.outputs.TAGNAME }}","add_debian_version":"true","arm64":"false"}' ${{ secrets.GLUE_API_URL }}/api/v1/climate-tokenization/${{ github.sha }}/start
262+
curl -s -XPOST -H "Authorization: Bearer ${{ env.JWT_TOKEN }}" --data '{"climate_tokenization_repo":"${{ steps.repo-name.outputs.REPO_NAME }}","application_name":"[\"$APP_NAME\"]","release_version":"${{ steps.tag-name.outputs.TAGNAME }}","add_debian_version":"true","arm64":"false"}' ${{ secrets.GLUE_API_URL }}/api/v1/climate-tokenization/${{ github.sha }}/success/deploy

.repo-content-updater.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pr_target_grant: develop
2+
assign_users:
3+
- TheLastCicada
4+
commit_prefix: "chore: "

app-builds.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module.exports = {
22
cadt: {
3-
tag: "1.3.3",
3+
tag: "1.3.6",
44
url: "https://github.com/Chia-Network/core-registry-cadt-ui/releases/download/{{tag}}/core-registry-cadt-ui-web-build.tar.gz",
55
},
66
climate_explorer: {
7-
tag: "1.1.6",
7+
tag: "1.1.11",
88
url: "https://github.com/Chia-Network/climate-explorer-ui/releases/download/{{tag}}/climate-explorer-ui-web-build.tar.gz",
99
},
1010
climate_tokenization_engine: {
11-
tag: "1.1.5",
11+
tag: "1.1.8",
1212
url: "https://github.com/Chia-Network/Climate-Tokenization-Engine-UI/releases/download/{{tag}}/climate-tokenization-engine-ui-web-build.tar.gz",
1313
},
1414
};

0 commit comments

Comments
 (0)