chore(release): new version (#5) #77
This file contains 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-20.04 | |
name: Release Stable | |
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" | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Create Release Pull Request | |
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 }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Get current package version | |
id: get_version | |
run: echo "CURRENT_PACKAGE_VERSION=$(node -p "require('./packages/oid4vci/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@v2 | |
with: | |
tag_name: v${{ env.CURRENT_PACKAGE_VERSION }} | |
release-unstable: | |
runs-on: ubuntu-20.04 | |
name: Release Unstable | |
if: "always() && github.event_name == 'push' && !startsWith(github.event.head_commit.message, 'chore(release): new version')" | |
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" | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Creating .npmrc | |
run: | | |
cat << EOF > ".npmrc" | |
//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
EOF | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Create unstable release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
# this ensures there's always a patch release created | |
cat << 'EOF' > .changeset/snapshot-template-changeset.md | |
--- | |
'@animo-id/oid4vci': 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/oid4vci/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 |