Skip to content

chore(website): update dependencies (#812) #371

chore(website): update dependencies (#812)

chore(website): update dependencies (#812) #371

Workflow file for this run

name: '🚀 CD — Publish'
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
pull-requests: write
id-token: write
jobs:
release-please:
runs-on: ubuntu-latest
timeout-minutes: 15
name: Release Please
steps:
- name: 🤝 Release Please
uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{ secrets.PAT }}
release-type: node
package-name: poku
changelog-path: 'CHANGELOG.md'
- name: ➕ Actions - Checkout
uses: actions/checkout@v4
if: ${{ steps.release.outputs.releases_created }}
- name: ➕ Actions - Setup Node.js
uses: actions/setup-node@v4
if: ${{ steps.release.outputs.releases_created }}
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- name: ➕ Cache dependencies
uses: actions/cache@v4
if: ${{ steps.release.outputs.releases_created }}
with:
path: ~/.npm
key: npm-linux-${{ hashFiles('package-lock.json') }}
restore-keys: npm-linux-
- name: 📦 Installing Dependencies
if: ${{ steps.release.outputs.releases_created }}
run: npm ci
- name: 🚀 Building Poku
if: ${{ steps.release.outputs.releases_created }}
run: npm run build
- name: 📥 Publishing Package
if: ${{ steps.release.outputs.releases_created }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --provenance
- name: 🔗 Triggering — Website Publish
if: ${{ steps.release.outputs.releases_created }}
uses: actions/github-script@v7
with:
github-token: ${{ secrets.PAT }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'cd_docs-deploy.yml',
ref: 'main'
});