-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (44 loc) · 1.14 KB
/
release.yml
File metadata and controls
48 lines (44 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Release
on:
push:
branches:
- main # Stable
- next # Next/Beta
- dev # Canary
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions:
contents: write
id-token: write
pull-requests: write
issues: write
jobs:
release:
name: Release
if: github.repository_owner == 'rineex'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Tools
uses: ./.github/setup
- name: Run Tests
run: pnpm run test:ci
- name: Run Changesets (version or publish)
id: changesets
uses: changesets/action@v1
with:
version: pnpm run changeset:version
publish: pnpm run changeset:publish
commit: 'ci: Version Packages'
title: 'ci: Version Packages'
env:
GITHUB_TOKEN: ${{ secrets.CHANGESET_TOKEN }}
- name: Check for Changes
if: steps.changesets.outputs.published != 'true'
run: |
echo "No packages were published."
exit 0