Publiserer endrede pakker. Siste commit er chore(release): publish [ci skip release] - @fremtind/[email protected] - @fremtind/[email protected] - @fremtind/[email protected] - @fremtind/[email protected] - @fremtind/[email protected] - @fremtind/[email protected] - @fremtind/[email protected] - @fremtind/[email protected] - @fremtind/[email protected] - @fremtind/[email protected] - @fremti... #2644
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 release | |
on: | |
push: | |
branches: | |
- main | |
run-name: Publiserer endrede pakker. Siste commit er ${{ github.event.head_commit.message }} | |
jobs: | |
build-and-publish: | |
name: Build and publish | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip release]') }} | |
permissions: | |
actions: write | |
contents: write | |
packages: write | |
deployments: write | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.BOT_PUBLISH_TOKEN }} | |
fetch-depth: "0" # fetch entire git history | |
- name: Fetch version tags | |
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
- name: Configure CI Git User | |
run: | | |
git config --global user.name '@fremtind-bot' | |
git config --global user.email '[email protected]' | |
git remote set-url origin https://fremtind-bot:[email protected]/fremtind/jokul | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: | | |
- args: [--global, lerna-clean-changelogs-cli@^2.0.18] | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install Packages | |
run: | | |
pnpm install --frozen-lockfile | |
- name: Monorepo Runner Cache | |
uses: actions/cache@v3 | |
id: nx-cache | |
with: | |
path: .nx | |
key: nx-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.sha }} | |
restore-keys: | | |
nx-${{ hashFiles('pnpm-lock.yaml') }}- | |
- name: Try logout | |
continue-on-error: true | |
run: npm logout | |
- name: Verify release is needed | |
id: lerna_changed | |
continue-on-error: true | |
run: pnpm version:check | |
- name: Authenticate with Registry | |
if: steps.lerna_changed.outcome == 'success' | |
run: | | |
echo "registry=http://registry.npmjs.org/" >> .npmrc | |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc | |
npm whoami | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Publish packages to NPM | |
if: steps.lerna_changed.outcome == 'success' # only run if there are changes to publish | |
run: pnpm release --yes | |
env: | |
GH_TOKEN: ${{ secrets.BOT_PUBLISH_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.BOT_PUBLISH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Switch registry | |
if: steps.lerna_changed.outcome == 'success' | |
uses: actions/setup-node@v3 | |
with: | |
registry-url: "https://npm.pkg.github.com" | |
# Defaults to the user or organization that owns the workflow file | |
scope: "@fremtind" | |
- name: Clear uncommitted changes | |
if: steps.lerna_changed.outcome == 'success' | |
run: git checkout .npmrc | |
- name: Reinstall packages after running actions/setup-node | |
run: pnpm install --frozen-lockfile | |
- name: Publish packages to GitHub Packages | |
if: steps.lerna_changed.outcome == 'success' | |
run: pnpm release-gh --yes | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Restore registry | |
if: steps.lerna_changed.outcome == 'success' | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Restore workspace | |
if: steps.lerna_changed.outcome == 'success' | |
run: | | |
pnpm install --frozen-lockfile | |
- name: Build packages if needed | |
if: steps.lerna_changed.outcome != 'success' | |
run: pnpm build | |
- name: Build and deploy portal | |
env: | |
GATSBY_MIXPANEL_PROJECT_ID: ${{ secrets.MIXPANEL_PROJECT_ID_PROD }} | |
GH_TOKEN: ${{ secrets.BOT_PUBLISH_TOKEN }} | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "fremtind-bot" | |
git remote set-url origin https://x-access-token:${GH_TOKEN}@github.com/fremtind/jokul.git | |
pnpm deploy:docs | |
main-to-external: | |
name: Merge main to external-contributions | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- run: gh api --method POST /repos/fremtind/jokul/merges -F base='external-contributions' -F head='main' # do a server-side merge using GitHub API https://cli.github.com/manual/gh_api and https://docs.github.com/en/rest/reference/repos#merging | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |