mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
91b8f85788
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...df4cb1c069e1874edd31b4311f1884172cec0e10) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
---
|
|
name: Packages - Publish NPM packages
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- packages/tsconfig/**
|
|
- packages/eslint-config/**
|
|
- packages/prettier-config/**
|
|
- packages/docusaurus-config/**
|
|
- packages/esbuild-plugin-live-reload/**
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
# Required for NPM OIDC trusted publisher
|
|
id-token: write
|
|
contents: read
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
package:
|
|
# The order of the `*config` packages should not be changed, as they depend on each other.
|
|
- packages/tsconfig
|
|
- packages/eslint-config
|
|
- packages/prettier-config
|
|
- packages/docusaurus-config
|
|
- packages/logger-js
|
|
- packages/esbuild-plugin-live-reload
|
|
steps:
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v5
|
|
with:
|
|
fetch-depth: 2
|
|
- uses: ./.github/actions/setup-node
|
|
with:
|
|
working-directory: ${{ matrix.package }}
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@9426d40962ed5378910ee2e21d5f8c6fcbf2dd96 # 24d32ffd492484c1d75e0c0b894501ddb9d30d62
|
|
with:
|
|
files: |
|
|
${{ matrix.package }}/package.json
|
|
- name: Publish package
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
working-directory: ${{ matrix.package }}
|
|
run: |
|
|
corepack npm ci
|
|
corepack npm run build
|
|
corepack npm publish
|