Release #99
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: Release | |
on: workflow_dispatch | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v2 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install Yarn | |
run: corepack enable | | |
corepack prepare yarn@3.6.4 --activate | |
# Yarn dependencies cannot be cached until yarn is installed | |
# WORKAROUND: https://github.com/actions/setup-node/issues/531 | |
- name: Extract Cached Dependencies | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn --immutable | |
- name: Set Git user to Actions Bot | |
run: | | |
git config --local user.name 'github-actions[bot]' | |
git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
- name: Run Release | |
run: yarn release-it --ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |