We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cbdf1d commit b0f0328Copy full SHA for b0f0328
2 files changed
.github/workflows/pull-request.yml
@@ -2,7 +2,7 @@ name: Pull request
2
on: pull_request
3
4
jobs:
5
- build:
+ pull-request:
6
runs-on: macos-15
7
8
steps:
@@ -12,7 +12,6 @@ jobs:
12
env:
13
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14
run: |
15
- echo "GITHUB_TOKEN=${{ env.GITHUB_TOKEN }}" >> $GITHUB_ENV
16
curl https://mise.run | sh
17
mise install
18
.github/workflows/release.yml
@@ -0,0 +1,21 @@
1
+name: Release
+
+on:
+ push:
+ tags:
+ - '*'
+jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+ steps:
+ - name: Draft release
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ TAG_NAME=${GITHUB_REF#refs/tags/}
+ gh release create "$TAG_NAME" \
19
+ --repo="$GITHUB_REPOSITORY" \
20
+ --generate-notes \
21
+ --draft
0 commit comments