mirror of
https://github.com/goauthentik/authentik.git
synced 2026-08-30 18:51:39 -07:00
* core: Bump packages. * Bump Live Reload dependencies. * Bump tsconfig. * Bum ESLint config deps. Fix formatting. * Bump Prettier deps. Fix ESlint config. * Bump live reload deps. Fix linter. * Bump website deps. * web: Update dependencies. Fix Playwright issues. * Fix deprecations. * Fix linter warnings. * Fix override, run audit. * Fix import path. * Tidy types. * Format. * Update ignore patterns. * Fix import path. * Update deps. Clean up workspace linting. * Update deps, options. * Hide icons in navbar. * Format. * Remove deprecated option. * Use relative packages. * Add scripts. Tidy. * Bump engines. * Clarify order. * Clarify order. Install base deps. * Format. * Fix stale user during tests. * Fix runtime errors. * Fix redirect during tests, UI change. * web: Fix danger button hover background color. * web: Adjust colors, padding. * web: Fix sidebar colors, padding. * Fix alignment. * Fix background contrast.
56 lines
1.6 KiB
YAML
56 lines
1.6 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/esbuild-plugin-live-reload
|
|
steps:
|
|
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v5
|
|
with:
|
|
fetch-depth: 2
|
|
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v5
|
|
with:
|
|
node-version-file: ${{ matrix.package }}/package.json
|
|
registry-url: "https://registry.npmjs.org"
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # 24d32ffd492484c1d75e0c0b894501ddb9d30d62
|
|
with:
|
|
files: |
|
|
${{ matrix.package }}/package.json
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
- name: Publish package
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
working-directory: ${{ matrix.package }}
|
|
run: |
|
|
npm ci
|
|
npm run build
|
|
npm publish
|