chore: Add discord-message action logging #64
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: | |
release: | |
name: Release | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 20 | |
permissions: | |
contents: write | |
id-token: write | |
issues: write | |
repository-projects: write | |
deployments: write | |
packages: write | |
pull-requests: write | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Setup pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-store | |
run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | |
- name: Use pnpm store | |
uses: actions/cache@v3 | |
id: pnpm-cache | |
with: | |
path: ${{ steps.pnpm-store.outputs.pnpm_cache_dir }} | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile --prefer-offline | |
- name: PR or Publish | |
id: changesets | |
uses: changesets/[email protected] | |
with: | |
version: pnpm changeset:version | |
publish: pnpm changeset:publish | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Notify discord | |
id: discord-msg | |
if: steps.changesets.outputs.published == 'true' | |
uses: ./.github/actions/discord-message | |
with: | |
publishedPackages: ${{ steps.changesets.outputs.publishedPackages }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
- name: Publish Prerelease | |
if: steps.changesets.outputs.published != 'true' | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
npm config set "//registry.npmjs.org/:_authToken" "$NPM_TOKEN" | |
git reset --hard origin/main | |
pnpm changeset version --no-git-tag --snapshot canary | |
pnpm changeset publish --no-git-tag --snapshot canary --tag canary |