chore: remove replaced mdx files #162
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: v2 release # Builds and releases @carbon/v11 supported version of @carbon/ibm-products | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 4 * * TUE' # Release every Tuesday at 4:30am EST | |
jobs: | |
Release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # https://github.com/actions/checkout/issues/217 | |
token: ${{ secrets.GH_TOKEN_LERNA }} # https://github.com/lerna/lerna/issues/1957 | |
ref: 'main' | |
# https://github.com/actions/checkout#push-a-commit-using-the-built-in-token | |
- run: | | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
git config user.name $GITHUB_ACTOR | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 # https://github.com/actions/setup-node | |
with: | |
node-version: lts/gallium | |
registry-url: https://registry.npmjs.org | |
cache: yarn | |
- name: Install | |
run: yarn | |
- name: Continuous integration check (includes build) | |
run: yarn ci-check | |
# Dry run - `yarn lerna publish --dist-tag next --no-verify-access --create-release github --yes --no-push --no-git-tag-version` | |
- name: Publish | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN_LERNA }} | |
NODE_AUTH_TOKEN: ${{ secrets.CARBON_BOT_NPM_TOKEN }} | |
run: | |
yarn lerna publish --no-verify-access --create-release | |
github --yes | |
- name: Bump versions | |
run: yarn | |
- name: Commit lock file | |
- run: | | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
git config user.name $GITHUB_ACTOR | |
git add yarn.lock | |
git commit -m "chore: update lockfile" | |
git push origin main |