-
-
Notifications
You must be signed in to change notification settings - Fork 5
29 lines (26 loc) · 715 Bytes
/
Copy pathrelease.yml
File metadata and controls
29 lines (26 loc) · 715 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
28
29
---
name: Generate New Release
on:
workflow_dispatch:
permissions:
id-token: write # Required for OIDC
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
env:
CI: true
dist: ember-stereo/dist
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/pnpm
- name: Release
working-directory: ./ember-stereo
run: node_modules/.bin/semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_PA_TOKEN }}