chore(release): new version (#261) #300
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| release-stable: | |
| runs-on: ubuntu-24.04 | |
| name: Release Stable | |
| permissions: | |
| contents: write | |
| id-token: write # Needed for npm trusted publishing | |
| pull-requests: write | |
| outputs: | |
| published: ${{ env.PUBLISHED == 'true' }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: "pnpm" | |
| - name: Update npm | |
| run: npm install -g npm@^11 | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Create Release Pull Request or Publish to npm | |
| id: changesets | |
| uses: changesets/action@v1 | |
| with: | |
| title: "chore(release): new version" | |
| commit: "chore(release): new version" | |
| publish: pnpm release | |
| version: pnpm changeset-version | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get current package version | |
| id: get_version | |
| run: echo "PACKAGE_VERSION=$(node -p "require('./packages/openid4vci/package.json').version")" >> $GITHUB_ENV | |
| - name: Create Github Release | |
| if: "startsWith(github.event.head_commit.message, 'chore(release): new version')" | |
| uses: softprops/action-gh-release@v3 | |
| with: | |
| tag_name: v${{ env.PACKAGE_VERSION }} | |
| release-unstable: | |
| runs-on: ubuntu-24.04 | |
| name: Release Unstable | |
| needs: release-stable | |
| if: always() && github.event_name == 'push' && needs.release-stable.outputs.published == 'false' | |
| permissions: | |
| contents: write | |
| id-token: write # Needed for npm trusted publishing | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: "pnpm" | |
| - name: Update npm | |
| run: npm install -g npm@^11 | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Create unstable release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| # ensure there's always a patch release created | |
| cat << 'EOF' > .changeset/snapshot-template-changeset.md | |
| --- | |
| '@openid4vc/openid4vci': patch | |
| --- | |
| snapshot release | |
| EOF | |
| pnpm changeset version --snapshot alpha | |
| pnpm style:fix | |
| pnpm build | |
| pnpm changeset publish --tag alpha | |
| CURRENT_PACKAGE_VERSION=$(node -p "require('./packages/openid4vci/package.json').version") | |
| git config --global user.name "github-actions[bot]" | |
| git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git tag v$CURRENT_PACKAGE_VERSION | |
| git push origin v$CURRENT_PACKAGE_VERSION --no-verify |