0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/.github/workflows/release.yml

76 lines
1.9 KiB
YAML
Raw Normal View History

name: Release
2022-08-12 01:00:38 -05:00
on:
push:
branches:
- main
- "1-legacy"
- "2-legacy"
- "3-legacy"
- 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:
name: Changelog PR or Release
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
- name: Setup PNPM
uses: pnpm/action-setup@v3
- name: Setup Node
2024-02-09 01:35:00 -05:00
uses: actions/setup-node@v4
with:
2023-07-24 13:47:07 -05:00
node-version: 18
cache: "pnpm"
- 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:
# Note: pnpm install after versioning is necessary to refresh lockfile
2022-08-12 01:00:38 -05:00
version: pnpm run version
publish: pnpm exec changeset publish
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 }}
- 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 }}
run: node .github/scripts/announce.mjs '${{ steps.changesets.outputs.publishedPackages }}'
- name: Send message on Discord
if: steps.changesets.outputs.published == 'true'
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@0.3.2
with:
args: "${{ steps.message.outputs.DISCORD_MESSAGE }}"