fix isAsyncIterable type-guard example (#1415) #1
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: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Main | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git Credentials | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "theguild-bot" | |
echo "machine github.com login theguild-bot password ${{secrets.GH_API_TOKEN}}" > ~/.netrc | |
- name: Add origin remote and refetch main | |
run: | | |
git remote rm origin | |
git remote add origin "https://github.com/${{github.repository}}" | |
git fetch | |
git checkout main | |
git reset --hard | |
- name: Use Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 17 | |
- name: Setup NPM credentials | |
run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache Yarn | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-17-16-yarn-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-17-16-yarn- | |
- name: Install Dependencies using Yarn | |
run: yarn install --ignore-engines && git checkout yarn.lock | |
- name: Create Release Pull Request or Publish to npm | |
id: changesets | |
uses: changesets/action@master | |
with: | |
publish: yarn release | |
commit: 'chore(release): update monorepo packages versions' | |
title: 'Upcoming Release Changes' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |