mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
109 lines
3.3 KiB
YAML
109 lines
3.3 KiB
YAML
name: Release lib on branch
|
|
run-name: Release lib on branch ${{ github.ref_name }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
dry-run-flag:
|
|
description: 'enable dry-run on artifact push'
|
|
required: false
|
|
type: boolean
|
|
default: true
|
|
|
|
env:
|
|
BASE_REF: ${{ github.base_ref }}
|
|
HEAD_REF: ${{ github.head_ref }}
|
|
GH_COMMIT: ${{ github.sha }}
|
|
GH_BUILD_NUMBER: ${{ github.run_id }}
|
|
LOG_LEVEL: "ERROR"
|
|
NODE_OPTIONS: "--max-old-space-size=5120"
|
|
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
|
|
jobs:
|
|
setup:
|
|
timeout-minutes: 20
|
|
name: "Setup"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: set TAG_NPM BRANCH
|
|
shell: bash
|
|
run: |
|
|
TAG_NPM="branch"
|
|
echo "Set TAG with name: ${TAG_NPM}"
|
|
echo "TAG_NPM=${TAG_NPM}" >> $GITHUB_ENV
|
|
- name: Checkout repository
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./.github/actions/setup
|
|
with:
|
|
enable-node-modules-cache: false
|
|
- name: install
|
|
run: |
|
|
npm ci
|
|
npm run bundle:js-api
|
|
npm run bundle:cli
|
|
- uses: ./.github/actions/upload-node-modules-and-artifacts
|
|
|
|
release-npm:
|
|
needs: [setup]
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./.github/actions/setup
|
|
with:
|
|
enable-node-modules-cache: false
|
|
- id: set-dryrun
|
|
uses: ./.github/actions/enable-dryrun
|
|
with:
|
|
dry-run-flag: ${{ inputs.dry-run-flag }}
|
|
- uses: ./.github/actions/download-node-modules-and-artifacts
|
|
- name: Set libraries versions
|
|
run: |
|
|
set -u;
|
|
./scripts/update-version.sh -gnu || exit 1;
|
|
- name: Set migrations
|
|
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
|
|
with:
|
|
script: |
|
|
const setMigrations = require('./scripts/github/release/set-migrations.js');
|
|
setMigrations();
|
|
- name: Build libraries
|
|
run: |
|
|
npm run build:libs
|
|
npm run build:schematics
|
|
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
|
|
name: release libraries GH registry
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
registry-url: 'https://npm.pkg.github.com'
|
|
scope: '@alfresco'
|
|
- run: npm run publish -- --tag=branch || exit 1
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.PAT_WRITE_PKG }}
|
|
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
|
|
name: release libraries Npm registry
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
registry-url: 'https://${{ vars.NPM_REGISTRY_ADDRESS }}'
|
|
scope: '@alfresco'
|
|
- run: npm run publish -- --tag=branch || exit 1
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }}
|
|
|
|
npm-check-bundle:
|
|
needs: [release-npm]
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
- uses: ./.github/actions/npm-check-bundle
|