-
-
Notifications
You must be signed in to change notification settings - Fork 9
27 lines (26 loc) · 619 Bytes
/
Copy pathrelease.yml
File metadata and controls
27 lines (26 loc) · 619 Bytes
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
name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
if: github.repository_owner == 'martrapp'
permissions:
contents: write
pull-requests: write
name: Release
runs-on: ubuntu-latest
env:
npm_config_legacy_peer_deps: "true"
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 24
- run: npm ci
- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}