diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 834a57c..f557971 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,19 +28,3 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - publish-gpr: - runs-on: ubuntu-latest - permissions: - packages: write - contents: read - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 16.x - cache: "npm" - registry-url: https://npm.pkg.github.com/ - - name: Publish to GPR - run: npm run ci && npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index 7f0215d..de61330 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -26,6 +26,6 @@ jobs: cache: "npm" registry-url: https://npm.pkg.github.com/ - name: Publish to GPR (staging) - run: npm run ci && npx changeset version && npm publish --tag beta + run: npm run ci && npx changeset version && npm publish env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/CHANGELOG.md b/CHANGELOG.md index ea3cac5..9de91db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @alecvision/borg +## 0.4.9 + +### Patch Changes + +- ci updates + ## 0.4.8 ### Patch Changes diff --git a/package-lock.json b/package-lock.json index 0a8c57a..2a7c069 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@alecvision/borg", - "version": "0.4.8", + "version": "0.4.9", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@alecvision/borg", - "version": "0.4.8", + "version": "0.4.9", "license": "ISC", "dependencies": { "bson": "^5.0.1" diff --git a/package.json b/package.json index 8205608..34c230a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@alecvision/borg", - "version": "0.4.8", + "version": "0.4.9", "description": "Model your data with Borg and get run-time type validation, TypeScript types, (de)serialization, and MongoDB niceties such as BSON type conversion and auto-generated validation schemas - for free. ", "main": "./dist/index.js", "module": "./dist/index.mjs",