Skip to content

fix(vendors): update elstudio presets #2349

fix(vendors): update elstudio presets

fix(vendors): update elstudio presets #2349

Workflow file for this run

---
name: CI
'on':
push:
branches: [main]
pull_request:
workflow_dispatch:
inputs:
dry_run:
description: 'Dry run'
default: false
required: false
type: boolean
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
release:
env:
DRY_RUN: ${{ github.event_name == 'pull_request' || github.event.inputs.dry_run && 'true' || 'false' }}
FORCE_COLOR: true
name: Release
runs-on: ubuntu-latest
steps:
- name: Get Workflow Access Token
id: get-workflow-access-token
uses: peter-murray/workflow-application-token-action@8e1ba3bf1619726336414f1014e37f17fbadf1db # v2.1.0
with:
application_id: ${{ secrets.APPLICATION_ID }}
application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
token: ${{ steps.get-workflow-access-token.outputs.token }}
- name: Setup Node.js
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
with:
node-version: '18.x'
- name: Get Release Options
env:
IS_DEFAULT_BRANCH: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
run: |
if [[ $DRY_RUN != 'true' || $IS_DEFAULT_BRANCH == 'true' ]]; then
echo "DRY_RUN=false" >> $GITHUB_ENV
fi
- name: Semantic Release
env:
CI_FLAG: ${{ env.DRY_RUN == 'true' && 'false' || 'true' }}
GIT_AUTHOR_EMAIL: '118100583+bfra-me[bot]@users.noreply.github.com'
GIT_AUTHOR_NAME: 'bfra-me[bot]'
GIT_COMMITTER_EMAIL: '118100583+bfra-me[bot]@users.noreply.github.com'
GIT_COMMITTER_NAME: 'bfra-me[bot]'
GITHUB_TOKEN: ${{ steps.get-workflow-access-token.outputs.token }}
run: |
# Run `semantic-release`
npm install [email protected]
npx [email protected] --dry-run ${{ env.DRY_RUN }} --ci ${{ env.CI_FLAG }}