2022-09-12 14:21:20 -07:00
|
|
|
name: Release
|
2022-08-11 23:00:38 -07:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-02-24 09:52:43 -06:00
|
|
|
- "1-legacy"
|
2023-08-29 14:00:47 -04:00
|
|
|
- "2-legacy"
|
2023-11-30 22:22:03 +08:00
|
|
|
- "3-legacy"
|
2024-11-28 10:43:47 +00:00
|
|
|
- "4-legacy"
|
2022-08-11 23:00:38 -07:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
env:
|
|
|
|
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
|
|
|
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
|
|
|
FORCE_COLOR: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
changelog:
|
2024-03-05 16:43:24 -06:00
|
|
|
name: Changelog PR or Release
|
2024-03-05 16:47:15 -08:00
|
|
|
if: ${{ github.repository_owner == 'withastro' }}
|
2022-08-11 23:00:38 -07:00
|
|
|
runs-on: ubuntu-latest
|
2023-10-05 18:29:36 +08:00
|
|
|
permissions:
|
2023-10-05 18:45:41 +08:00
|
|
|
contents: write
|
2023-10-05 18:29:36 +08:00
|
|
|
id-token: write
|
2022-08-11 23:00:38 -07:00
|
|
|
steps:
|
2024-02-09 14:35:00 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-08-11 23:00:38 -07:00
|
|
|
|
2022-10-28 14:36:50 -04:00
|
|
|
- name: Setup PNPM
|
2024-02-29 05:49:07 +01:00
|
|
|
uses: pnpm/action-setup@v3
|
2022-10-28 14:36:50 -04:00
|
|
|
|
|
|
|
- name: Setup Node
|
2024-02-09 14:35:00 +08:00
|
|
|
uses: actions/setup-node@v4
|
2022-10-28 14:36:50 -04:00
|
|
|
with:
|
2024-11-27 23:59:58 +08:00
|
|
|
node-version: 22
|
2023-02-24 09:52:43 -06:00
|
|
|
cache: "pnpm"
|
2022-10-28 14:36:50 -04:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
2022-08-11 23:00:38 -07:00
|
|
|
|
|
|
|
- name: Build Packages
|
|
|
|
run: pnpm run build
|
|
|
|
|
|
|
|
- name: Create Release Pull Request or Publish
|
|
|
|
id: changesets
|
|
|
|
uses: changesets/action@v1
|
|
|
|
with:
|
2024-03-05 16:47:15 -08:00
|
|
|
# Note: pnpm install after versioning is necessary to refresh lockfile
|
2022-08-11 23:00:38 -07:00
|
|
|
version: pnpm run version
|
2024-03-05 16:47:15 -08:00
|
|
|
publish: pnpm exec changeset publish
|
2023-02-24 09:52:43 -06:00
|
|
|
commit: "[ci] release"
|
|
|
|
title: "[ci] release"
|
2022-08-11 23:00:38 -07:00
|
|
|
env:
|
|
|
|
# Needs access to push to main
|
|
|
|
GITHUB_TOKEN: ${{ secrets.FREDKBOT_GITHUB_TOKEN }}
|
|
|
|
# Needs access to publish to npm
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
|
2024-01-23 15:28:28 -06:00
|
|
|
- name: Generate Announcement
|
|
|
|
id: message
|
2022-08-11 23:00:38 -07:00
|
|
|
if: steps.changesets.outputs.published == 'true'
|
|
|
|
env:
|
|
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
2024-01-23 15:28:28 -06:00
|
|
|
run: node .github/scripts/announce.mjs '${{ steps.changesets.outputs.publishedPackages }}'
|
2024-02-29 05:49:07 +01:00
|
|
|
|
2024-01-23 15:28:28 -06:00
|
|
|
- name: Send message on Discord
|
2024-01-23 16:25:10 -06:00
|
|
|
if: steps.changesets.outputs.published == 'true'
|
2024-01-23 15:28:28 -06:00
|
|
|
env:
|
|
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
|
|
|
uses: Ilshidur/action-discord@0.3.2
|
|
|
|
with:
|
|
|
|
args: "${{ steps.message.outputs.DISCORD_MESSAGE }}"
|