Skip to content

Publish to npm (dev) #80

Publish to npm (dev)

Publish to npm (dev) #80

name: Publish to npm (dev)
on:
workflow_dispatch:
workflow_run:
workflows:
- "CI Weekly"
branches:
- develop
types:
- completed
jobs:
release-dev:
runs-on: ubuntu-latest
environment: upload
permissions:
id-token: write # Required by Akeyless
contents: read
packages: read
steps:
- name: Import Secrets
id: import-secrets
uses: LanceMcCarthy/akeyless-action@v3
with:
access-id: ${{ secrets.GH_AKEYLESS_ACCESS_ID }}
static-secrets: |
{
"/WebComponents/prod/tokens/GH_TOKEN": "GH_TOKEN",
"/WebComponents/prod/tokens/PROGRESS_NPM_REGISTRY_TOKEN": "NPM_TOKEN"
}
export-secrets-to-environment: false
- name: Checkout branch
uses: actions/checkout@v3
with:
ref: develop
fetch-depth: '0'
token: ${{ steps.import-secrets.outputs.GH_TOKEN }}
- name: Setup git
run: |
git config user.name "kendo-bot"
git config user.email "kendouiteam@progress.com"
- name: Setup node
id: setup-node
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: 'https://registry.npmjs.org'
env:
NODE_AUTH_TOKEN: ${{ steps.import-secrets.outputs.NPM_TOKEN }}
- name: Use cache for root node_modules
id: cache-root-node_modules
uses: actions/cache@v3
with:
path: node_modules
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }}
- name: Install
if: steps.cache-root-node_modules.outputs.cache-hit != 'true'
run: npm ci --no-audit --no-fund
- name: Bootstrap
run: npm run bootstrap
- name: Build themes for dist
run: |
npm run sass
npm run sass:flat
npm run dist:swatches
npm run docs
- name: Lerna publish
run: npx lerna publish --conventional-commits --conventional-prerelease --create-release github --preid dev --dist-tag dev --allow-branch develop --force-publish --exact --yes
env:
GH_TOKEN: ${{ steps.import-secrets.outputs.GH_TOKEN }}
- name: Mark checks as successful
run: |
commit=$(git rev-parse HEAD)
./build/mark-checks.sh $commit
env:
GH_TOKEN: ${{ steps.import-secrets.outputs.GH_TOKEN }}