From 438c10a234c14dd8fc37d1363553769b6edc43a6 Mon Sep 17 00:00:00 2001 From: Egge Date: Thu, 24 Oct 2024 10:00:00 +0100 Subject: [PATCH] pipe: removed nextVersion workflow --- .github/workflows/nextVersion.yml | 24 ------------------------ package.json | 2 +- 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 .github/workflows/nextVersion.yml diff --git a/.github/workflows/nextVersion.yml b/.github/workflows/nextVersion.yml deleted file mode 100644 index 964ce5baa..000000000 --- a/.github/workflows/nextVersion.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Publish Package to npmjs -permissions: - contents: write - id-token: write -on: - push: - branches: - - staging -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version: 20 - registry-url: 'https://registry.npmjs.org' - - run: npm i - - run: npm run compile - - run: npm version prerelease --preid=rc --no-git-tag-version - - run: git push - - run: npm publish --provenance --access public --tag next - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index 813c3ad00..cbba8c094 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cashu/cashu-ts", - "version": "1.2.0", + "version": "1.2.1-rc.0", "description": "cashu library for communicating with a cashu mint", "main": "dist/lib/es5/index.js", "module": "dist/lib/es6/index.js",