FR-14458 - Fixed error on middleware request since NextJs V14.0.2 #283
Workflow file for this run
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: Publish Pre-Release to NPM | |
on: | |
# When standard Pull Request is merged | |
pull_request: | |
branches: | |
- master | |
types: [ closed ] | |
jobs: | |
createReleasePullRequest: | |
if: "!contains(join(github.event.pull_request.labels.*.name, ','), 'Release') && github.event.pull_request.merged == true" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: "0" | |
- name: Read .nvmrc | |
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT | |
id: nvm | |
- name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ steps.nvm.outputs.NODE_VERSION }} | |
- name: Install Dependencies and Build Packages | |
run: | | |
yarn install | |
yarn build | |
- name: Git Identity | |
run: | | |
git config --global user.name 'frontegg' | |
git config --global user.email '[email protected]' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Authenticate with Registry | |
run: | | |
yarn logout | |
echo "init-author-name=Frontegg LTD" > .npmrc | |
echo "[email protected]" >> .npmrc | |
echo "init-author-url=https://frontegg.com" >> .npmrc | |
echo "init-license=MIT" >> .npmrc | |
echo "always-auth=true" >> .npmrc | |
echo "registry=https://registry.npmjs.org" >> .npmrc | |
echo "_authToken=$NPM_TOKEN" >> .npmrc | |
echo "@frontegg:registry=https://registry.npmjs.org" >> .npmrc | |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc | |
npm whoami | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
- name: Commit Version UP | |
run: | | |
yarn lerna version patch --no-git-tag-version --yes --no-push --force-publish | |
yarn update-version | |
yarn prettier | |
- name: "Set Generated changelog" | |
uses: actions/github-script@v6 | |
id: 'generated-changelog' | |
with: | |
result-encoding: string | |
script: | | |
const { generateChangeLog } = await import(`${process.env.GITHUB_WORKSPACE}/.github/scripts/index.js`); | |
return generateChangeLog({context, github, core}) | |
- name: "Set incremented version" | |
uses: actions/github-script@v6 | |
id: 'incremented-version' | |
with: | |
result-encoding: string | |
script: | | |
const {default: fs} = await import('fs'); | |
const {version} = JSON.parse(fs.readFileSync('./lerna.json', {encoding: "utf-8"})); | |
return version; | |
- name: Commit changes | |
shell: bash -ex {0} | |
run: | | |
git add . && git commit -m "chore(release): publish ${{ steps.incremented-version.outputs.result }}" | |
- name: Create Release Pull Request | |
id: cpr | |
uses: peter-evans/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: ${{ secrets.GITHUB_WORKSPACE }} | |
commit-message: "Update v${{ steps.incremented-version.outputs.result }}" | |
committer: GitHub <[email protected]> | |
author: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>" | |
title: 'v${{ steps.incremented-version.outputs.result }}' | |
body: | | |
# v${{ steps.incremented-version.outputs.result }} | |
${{steps.generated-changelog.outputs.result}} | |
labels: "Type: Release" | |
branch: "release/next" | |
- name: Publish Pre-Release version to NPM | |
id: publish_pre_release_version | |
run: | | |
version=$(node -p 'require("./lerna.json").version') | |
echo "LIB_VERSION=${version}" >> $GITHUB_OUTPUT | |
echo "Publishing DEV version - v${version}-alpha.${{ github.run_id }}" | |
alphaVersion="${version}-alpha.${{ github.run_id }}" | |
yarn lerna version --no-git-tag-version --yes --no-push --exact "${alphaVersion}" | |
yarn update-version | |
yarn build | |
cp "./.npmrc" "./dist/@frontegg/nextjs/.npmrc" | |
cp "./.npmignore" "./dist/@frontegg/nextjs/.npmignore" | |
cd "./dist/@frontegg/nextjs" && npm publish --tag next | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
- name: Notify Slack on alpha version deployment | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_CHANNEL: frontegg-alpha-versions | |
SLACK_COLOR: ${{ job.status }} | |
SLACK_ICON: https://avatars.githubusercontent.com/u/67857107?s=40&v=4 | |
SLACK_MESSAGE: '${{ steps.publish_pre_release_version.outputs.LIB_VERSION }}-alpha.${{ github.run_id }} has been released :rocket:' | |
SLACK_TITLE: 'A new @frontegg/nextjs alpha version!' | |
SLACK_USERNAME: ${{ github.actor }} | |
SLACK_WEBHOOK: ${{ secrets.ROTEM_SLACK_WEBHOOK }} | |
MSG_MINIMAL: true |