From a3603e2738c9ddb242617f5979e755a8935656bf Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Tue, 21 Nov 2023 22:55:18 +0000 Subject: [PATCH] Fix publishing (#46) Reviewed-on: https://git.vdb.to/cerc-io/laconic-sdk/pulls/46 Co-authored-by: Thomas E Lackey Co-committed-by: Thomas E Lackey --- .gitea/workflows/publish.yaml | 6 +++++- package.json | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 51b9c53..5b4c1cc 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -7,12 +7,16 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [ 16.x ] + node-version: [ 18.x ] steps: - name: Checkout uses: actions/checkout@v2 with: fetch-depth: 0 + - name: Download yarn + run: | + curl -fsSL -o /usr/local/bin/yarn https://github.com/yarnpkg/yarn/releases/download/v1.22.21/yarn-1.22.21.js + chmod +x /usr/local/bin/yarn - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: diff --git a/package.json b/package.json index 8bc6e17..daa48bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cerc-io/laconic-sdk", - "version": "0.1.7", + "version": "0.1.8", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "git@github.com:cerc-io/laconic-sdk.git",