Publish to npm (dev) #163
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 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@v4 | |
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 "[email protected]" | |
- name: Setup node | |
id: setup-node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
registry-url: 'https://registry.npmjs.org' | |
env: | |
NODE_AUTH_TOKEN: ${{ steps.import-secrets.outputs.NPM_TOKEN }} | |
- name: Install | |
run: npm ci --no-audit --no-fund | |
- name: Build themes for dist | |
run: | | |
npm run sass | |
npm run sass: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 }} |