We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9cdd2c commit 62c16b8Copy full SHA for 62c16b8
.github/workflows/release.yml
@@ -7,13 +7,18 @@ on:
7
8
permissions:
9
contents: write
10
+ actions: read
11
+ pull-requests: read
12
13
jobs:
14
publish:
15
runs-on: ubuntu-latest
16
17
steps:
18
- uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 100
21
+ fetch-tags: true
22
23
- uses: ruby/setup-ruby@v1
24
with:
@@ -26,6 +31,7 @@ jobs:
26
31
cat /tmp/changelog.md
27
32
env:
28
33
TAG_NAME: ${{ github.ref_name }}
34
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29
35
30
36
- name: Release
37
uses: softprops/action-gh-release@v2
0 commit comments