From 96300135b8d135e9f7f89fd0b8869b83cedcba15 Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Wed, 22 Nov 2023 23:37:09 +0000 Subject: [PATCH] Test publishing (#3) Reviewed-on: https://git.vdb.to/cerc-io/test-progressive-web-app/pulls/3 Co-authored-by: Thomas E Lackey Co-committed-by: Thomas E Lackey --- .gitea/workflows/publish.yaml | 27 +++++++++++++++++++ package.json | 3 +++ scripts/publish-app-record.sh | 50 +++++++++++++++++++++++++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 .gitea/workflows/publish.yaml create mode 100755 scripts/publish-app-record.sh diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml new file mode 100644 index 0000000..75a01ea --- /dev/null +++ b/.gitea/workflows/publish.yaml @@ -0,0 +1,27 @@ +name: Publish ApplicationRecord to Registry +on: + release: + types: [published] +jobs: + cns_publish: + runs-on: ubuntu-latest + steps: + - name: "Clone project repository" + uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: 18 + - name: "Install Yarn" + run: npm install -g yarn + - name: "Install registry CLI" + run: | + npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/ + yarn global add @cerc-io/laconic-registry-cli + - name: "Install jq" + run: apt -y update && apt -y install jq + - name: "Publish Record" + env: + CERC_LACONIC_USER_KEY: ${{ secrets.CICD_LACONIC_USER_KEY }} + CERC_LACONIC_BOND_ID: ${{ secrets.CICD_LACONIC_BOND_ID }} + run: scripts/publish-app-record.sh diff --git a/package.json b/package.json index 6335967..f99862c 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,8 @@ { "private": true, + "name": "@cerc-io/test-progressive-web-app", + "version": "0.1.0", + "repository": "https://git.vdb.to/cerc-io/test-progressive-web-app", "scripts": { "dev": "next dev", "build": "next build", diff --git a/scripts/publish-app-record.sh b/scripts/publish-app-record.sh new file mode 100755 index 0000000..1f94a8b --- /dev/null +++ b/scripts/publish-app-record.sh @@ -0,0 +1,50 @@ +#!/bin/bash + +set -e + +RECORD_FILE=tmp.rf.$$ +CONFIG_FILE=`mktemp` + +CERC_APP_TYPE=${CERC_APP_TYPE:-"webapp"} +CERC_REPO_TAG=${CERC_REPO_TAG:-${GITHUB_SHA:-main}} + +rcd_name=$(jq -r '.name' package.json | sed 's/null//') +rcd_desc=$(jq -r '.description' package.json | sed 's/null//') +rcd_repository=$(jq -r '.repository' package.json | sed 's/null//') +rcd_homepage=$(jq -r '.homepage' package.json | sed 's/null//') +rcd_license=$(jq -r '.license' package.json | sed 's/null//') +rcd_author=$(jq -r '.license' package.json | sed 's/null//') +rcd_app_version=$(jq -r '.version' package.json | sed 's/null//') + +cat < "$CONFIG_FILE" +services: + cns: + restEndpoint: '${CERC_LACONIC_REST_ENDPOINT:-http://console.laconic.com:1317}' + gqlEndpoint: '${CERC_LACONIC_GQL_ENDPOINT:-http://console.laconic.com:9473/api}' + chainId: ${CERC_LACONIC_CHAIN_ID:-laconic_9000-1} + gas: 350000 + fees: 200000aphoton +EOF + +next_ver=$(laconic -c $CONFIG_FILE cns record list --type ApplicationRecord --all --name "$rcd_name" 2>/dev/null | jq -s '.[] | sort_by(.createTime) | reverse' | jq -r '.[0].attributes.version' | awk -F. -v OFS=. '{$NF += 1 ; print}') + +cat < "$RECORD_FILE" +record: + type: ApplicationRecord + version: ${next_ver:-0.0.1} + name: "$rcd_name" + description: "$rcd_desc" + homepage: "$rcd_homepage" + license: "$rcd_license" + author: "$rcd_author" + repository: "$rcd_repository" + repository_tag: "$CERC_REPO_TAG" + app_version: "$rcd_app_version" + app_type: "$CERC_APP_TYPE" +EOF + + +cat $RECORD_FILE +laconic -c $CONFIG_FILE cns record publish --filename $RECORD_FILE --user-key "${CERC_LACONIC_USER_KEY:-$CICD_LACONIC_USER_KEY}" --bond-id ${CERC_LACONIC_BOND_ID:-$CICD_LACONIC_BOND_ID} + +rm -f $RECORD_FILE $CONFIG_FILE