Skip to content

Commit

Permalink
💚 (snapshot-release): Release without PR creation
Browse files Browse the repository at this point in the history
  • Loading branch information
jdabbech-ledger committed Aug 28, 2024
1 parent e5ece4c commit 4c92dba
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/snapshot_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ env:
# if no inputs it's considered as a cron job
REF: ${{ inputs.ref || 'develop' }}
TAG: ${{ inputs.tag || 'develop' }}
NPM_TOKEN: ${{ secrets.NPMJS_TOKEN }}

jobs:
version:
snapshot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -35,13 +36,12 @@ jobs:
- name: build libraries
run: pnpm build

- name: create release pull request or publish
uses: changesets/action@v1
with:
version: pnpm bump --snapshot ${{ env.TAG }}
publish: pnpm release --no-git-tag
commit: "🔖 (snapshot-release): versioning packages"
title: "🔖 (snapshot-release) [NO-ISSUE]: versioning packages"
- name: create .npmrc
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> .npmrc

- name: create and publish snapshot release version
run: |
pnpm bump --snapshot ${{ env.TAG }}
pnpm release --snapshot --no-git-tag --tag ${{ env.TAG }}
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPMJS_TOKEN }}

0 comments on commit 4c92dba

Please sign in to comment.