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