Skip to content

Release message-box-dialog #137

Release message-box-dialog

Release message-box-dialog #137

Workflow file for this run

name: Release
run-name: Release ${{ inputs.package }}${{ inputs.dry-run && ' (dry-run)' || '' }}
on:
workflow_dispatch:
inputs:
package:
description: Package
required: true
type: choice
options:
- core
- layout
- list-loader
- message-box
- message-box-dialog
- numeric-stepper
- overlay
- search-container
- sidenav
- snackbar
- splitter
- status
- time-picker
- tooltip
- user-card
- user-tooltip
dry-run:
description: --dry-run
type: boolean
default: false
env:
HUSKY: 0
FORCE_COLOR: 3
jobs:
ci_release:
uses: dsi-hug/action/.github/workflows/action.yml@v1
secrets:
GH_USER_NAME: 'dsi-hug-bot'
GH_USER_EMAIL: '[email protected]'
GH_TOKEN: ${{ secrets.DSI_HUG_BOT_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.DSI_HUG_NPM_TOKEN }}
with:
working-directory: 'projects/${{ inputs.package }}'
dry-run: ${{ inputs.dry-run }}
release: true
ci_sync_peer_deps:
needs: ci_release
runs-on: 'ubuntu-latest'
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }} # https://github.com/actions/checkout/issues/1327
persist-credentials: false # https://github.com/semantic-release/semantic-release/issues/2636
- name: Synchronize peer dependencies
working-directory: 'scripts'
env:
GITHUB_TOKEN: ${{ secrets.DSI_HUG_BOT_GITHUB_TOKEN }}
run: |
git config user.name 'dsi-hug-bot'
git config user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.DSI_HUG_BOT_GITHUB_TOKEN }}@github.com/${{ github.repository }}
npm --prefix . i chalk
node ./sync-peer-deps.mjs
#
# nx does not update package-lock file correctly.
# @see https://github.com/nrwl/nx/issues/26660
#
# This results in the following error, next time deps are installed:
# “npm error `npm ci` can only install packages when your package.json and package-lock.json or
# npm-shrinkwrap.json are in sync. Please update your lock file with `npm install` before continuing."
#
ci_update_package_lock_file:
needs: ci_sync_peer_deps
runs-on: 'ubuntu-latest'
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }} # https://github.com/actions/checkout/issues/1327
persist-credentials: false # https://github.com/semantic-release/semantic-release/issues/2636
- name: Synchronize package.json and package-lock.json
env:
GITHUB_TOKEN: ${{ secrets.DSI_HUG_BOT_GITHUB_TOKEN }}
run: |
git config user.name 'dsi-hug-bot'
git config user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.DSI_HUG_BOT_GITHUB_TOKEN }}@github.com/${{ github.repository }}
npm install
git add package.json package-lock.json
git commit --message "chore: synchronize package.json and package-lock.json"
git push --follow-tags --no-verify --atomic