Merge pull request #23 from anoncreds/fix/anoncreds-registration #17
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 # Required for npm trusted publishing | |
| pull-requests: write | |
| outputs: | |
| published: ${{ steps.changesets.outputs.published }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| registry-url: "https://registry.npmjs.org" | |
| # Ensure npm >= 11.5.1 for trusted publishing support. | |
| # Automatically fetch future security updates | |
| - name: Update npm | |
| run: npm install -g npm@^11.5.1 | |
| - 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 "CURRENT_PACKAGE_VERSION=$(node -p "require('./packages/anoncreds-shared/package.json').version")" >> $GITHUB_ENV | |
| - name: Create Github Release | |
| if: steps.changesets.outputs.published == 'true' | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: v${{ env.CURRENT_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 # Required for npm trusted publishing | |
| pull-requests: write | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: "pnpm" | |
| registry-url: "https://registry.npmjs.org" | |
| # Ensure npm >= 11.5.1 for trusted publishing support. | |
| # Automatically fetch future security updates | |
| - name: Update npm | |
| run: npm install -g npm@^11.5.1 | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Create unstable release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| # this ensures there's always a patch release created | |
| cat << 'EOF' > .changeset/snapshot-template-changeset.md | |
| --- | |
| '@hyperledger/anoncreds-shared': 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/anoncreds-shared/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 |