Publish core-react #148
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 core-react | |
on: | |
workflow_dispatch: | |
inputs: | |
npm-tag: | |
description: 'Tag for npm package (next | latest | beta)' | |
required: true | |
type: choice | |
options: | |
- next | |
- latest | |
- beta | |
default: 'next' | |
environment: | |
description: 'Environment for Storybook (development | production)' | |
required: false | |
type: choice | |
options: | |
- development | |
- production | |
default: 'development' | |
permissions: | |
id-token: write | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
jobs: | |
setup: | |
uses: ./.github/workflows/_setup.yml | |
secrets: inherit | |
with: | |
cacheKey: ${{ github.sha }} | |
checkout_paths: packages | |
tag: ${{ github.event.inputs.npm-tag }} | |
packages: | |
name: Process packages | |
runs-on: ubuntu-latest | |
needs: [setup] | |
steps: | |
- name: Use "setup" cache | |
id: setup-cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./* | |
~/.pnpm-store | |
key: ${{ github.sha }} | |
- name: Use "dist" cache | |
id: dist-cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./* | |
~/.pnpm-store | |
key: ${{ github.sha }}-dist-${{ github.event.inputs.environment }}-core-react | |
- name: Build packages | |
id: build-packages | |
run: node_modules/.bin/pnpm run build | |
- name: Build Storybook | |
id: build-storybook | |
run: node_modules/.bin/pnpm build:storybook | |
- name: log-errors-to-slack | |
uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() | |
publish-utils-package: | |
name: Publish utils to npm | |
runs-on: ubuntu-latest | |
needs: [packages, setup] | |
steps: | |
- name: Use "dist" cache | |
id: dist-cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./* | |
~/.pnpm-store | |
key: ${{ github.sha }}-dist-${{ github.event.inputs.environment }}-core-react | |
- name: Publish to npm | |
id: publish-to-npm | |
run: | | |
node_modules/.bin/pnpm config set '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_TOKEN }} | |
node_modules/.bin/pnpm --filter @equinor/eds-utils publish --access public --tag ${{ needs.setup.outputs.tag }} --no-git-checks | |
- name: log-errors-to-slack | |
uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() | |
publish-core-package: | |
name: Publish core-react to npm | |
runs-on: ubuntu-latest | |
needs: [publish-utils-package, setup] | |
steps: | |
- name: Use "dist" cache | |
id: dist-cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./* | |
~/.pnpm-store | |
key: ${{ github.sha }}-dist-${{ github.event.inputs.environment }}-core-react | |
- name: Publish to npm | |
id: publish-to-npm | |
run: | | |
node_modules/.bin/pnpm config set '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_TOKEN }} | |
node_modules/.bin/pnpm --filter @equinor/eds-core-react publish --access public --tag ${{ needs.setup.outputs.tag }} --no-git-checks | |
- name: log-errors-to-slack | |
uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() | |
publish-storybook: | |
needs: [setup, packages] | |
name: Build & Deploy Website | |
runs-on: ubuntu-latest | |
environment: | |
name: ${{ github.event.inputs.environment || 'development' }} | |
steps: | |
- name: Use cache with storybook files | |
id: use-cache-storybook | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./* | |
~/.pnpm-store | |
key: ${{ github.sha }}-dist-${{ github.event.inputs.environment }}-core-react | |
- name: Deploy the website | |
id: deploy-website | |
uses: tibor19/static-website-deploy@v2 | |
with: | |
enabled-static-website: 'true' | |
folder: 'packages/eds-core-react/storybook-build' | |
public-access-policy: 'container' | |
connection-string: ${{ secrets.AZ_STORYBOOK_CONNECTION_STRING }} | |
- name: log-errors-to-slack | |
uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() | |
purge-cdn: | |
if: github.event.inputs.environment == 'production' | |
needs: [publish-storybook] | |
name: Purge cdn | |
uses: ./.github/workflows/_purge_cdn.yaml | |
secrets: inherit | |
with: | |
environment: production |