Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

infra(release): publish release #2991

Merged
merged 8 commits into from
Jul 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Publish Release

on:
release:
types: [published]

permissions:
contents: write # to push the release branch

jobs:
publish:
name: Publish Release
runs-on: ubuntu-latest

steps:
ST-DDT marked this conversation as resolved.
Show resolved Hide resolved
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0 # we want to push the release branch later

- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0

- name: Set node version to 22
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 22
cache: 'pnpm'

- name: Install deps
run: pnpm install --frozen-lockfile
env:
CYPRESS_INSTALL_BINARY: 0

- name: Gather release information
run: |
RELEASE_VERSION=$(jq -r '.version' package.json)
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV
RELEASE_MAJOR=$(jq -r '.version | split(".")[0]' package.json)
echo "RELEASE_MAJOR=$RELEASE_MAJOR" >> $GITHUB_ENV
DIST_TAG=$(jq -r '.version | if split("-")[1] == null then "latest" else "next" end' package.json)
echo "DIST_TAG=$DIST_TAG" >> $GITHUB_ENV

- name: Prepare README
run: |
echo -e "$(grep -P '## 📙 API Documentation' -B 10000 README.md)\n\n- [Getting Started Guide](https://fakerjs.dev/guide/)\n- [API Reference](https://fakerjs.dev/api/)\n\n$(grep -P '## 🚀 Features' -A 10000 README.md)" > README.md
sed -i "s|/fakerjs.dev/|/v$RELEASE_MAJOR.fakerjs.dev/|g" README.md

- name: Set publishing config
run: pnpm config set '//registry.npmjs.org/:_authToken' "${NPM_AUTH_TOKEN}"
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

- name: Publish
run: |
pnpm publish --tag next --no-git-checks
env:
CYPRESS_INSTALL_BINARY: 0

- name: Set latest/next dist-tag
run: |
pnpm dist-tag add @faker-js/faker@$RELEASE_VERSION $DIST_TAG

- name: Push to Release Branch
run: |
git push origin $GITHUB_REF_NAME:v$RELEASE_MAJOR
ST-DDT marked this conversation as resolved.
Show resolved Hide resolved