mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Remove adf-testing lib * remove adf-testing references * remove testing:bundle from CI workflows
130 lines
4.4 KiB
YAML
130 lines
4.4 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 }}
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
GITHUB_BRANCH: ${{ github.ref_name }}
|
|
GH_BUILD_DIR: ${{ github.workspace }}
|
|
GH_COMMIT: ${{ github.sha }}
|
|
BUILD_ID: ${{ github.run_id }}
|
|
GH_RUN_NUMBER: ${{ github.run_attempt }}
|
|
GH_BUILD_NUMBER: ${{ github.run_id }}
|
|
JOB_ID: ${{ github.run_id }}
|
|
LOG_LEVEL: "ERROR"
|
|
S3_BUILD_BUCKET_SHORT_NAME: ${{ secrets.S3_BUILD_BUCKET_SHORT_NAME }}
|
|
NODE_OPTIONS: "--max-old-space-size=5120"
|
|
DOCKER_REPOSITORY_DOMAIN: ${{ secrets.DOCKER_REPOSITORY_DOMAIN }}
|
|
DOCKER_REPOSITORY_USER: ${{ secrets.DOCKER_REPOSITORY_USER }}
|
|
DOCKER_REPOSITORY_PASSWORD: ${{ secrets.DOCKER_REPOSITORY_PASSWORD }}
|
|
DOCKER_REPOSITORY_STORYBOOK: "${{ secrets.DOCKER_REPOSITORY_DOMAIN }}/alfresco/storybook"
|
|
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
REPO_OWNER: "Alfresco"
|
|
REPO_NAME: "alfresco-ng2-components"
|
|
STORYBOOK_DIR: "./dist/storybook/stories"
|
|
BUILT_LIBS_DIR: "./dist/libs"
|
|
NODE_MODULES_DIR: "./node_modules"
|
|
REDIRECT_URI: /
|
|
|
|
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./.github/actions/setup
|
|
with:
|
|
enable-cache: false
|
|
enable-node-modules-cache: false
|
|
- name: install
|
|
run: |
|
|
npm ci
|
|
npx nx run js-api:bundle
|
|
npx nx run cli:bundle
|
|
- 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./.github/actions/setup
|
|
with:
|
|
enable-cache: false
|
|
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@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
|
with:
|
|
script: |
|
|
const setMigrations = require('./scripts/github/release/set-migrations.js');
|
|
setMigrations();
|
|
- name: Build libraries
|
|
run: |
|
|
npx nx run-many --target=build --prod --exclude="demoshell" --skip-nx-cache
|
|
npx nx run-many --target=pretheme
|
|
npx nx run-many --target=build-schematics
|
|
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
|
|
name: release libraries GH registry
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
registry-url: 'https://npm.pkg.github.com'
|
|
scope: '@alfresco'
|
|
- run: npx nx run-many --target=npm-publish --tag=branch|| exit 1
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.PAT_WRITE_PKG }}
|
|
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
|
|
name: release libraries Npm registry
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
registry-url: 'https://${{ vars.NPM_REGISTRY_ADDRESS }}'
|
|
scope: '@alfresco'
|
|
- run: npx nx run-many --target=npm-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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- uses: ./.github/actions/npm-check-bundle
|