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 645d645 commit dfd69acCopy full SHA for dfd69ac
.github/workflows/release.yaml
@@ -24,6 +24,16 @@ jobs:
24
contents: read
25
repository-projects: write
26
steps:
27
+ - name: Checkout
28
+ uses: actions/checkout@v4
29
+ with:
30
+ fetch-depth: 0
31
+
32
+ - name: Configure Git
33
+ run: |
34
+ git config user.name "$GITHUB_ACTOR"
35
+ git config user.email "[email protected]"
36
37
- name: Tag branch
38
env:
39
VERSION: ${{ github.event.inputs.version }}
@@ -34,6 +44,8 @@ jobs:
44
release:
45
name: Make release
46
runs-on: ubuntu-latest
47
+ needs:
48
+ - tags
49
50
- name: Checkout code
51
uses: actions/checkout@v4
0 commit comments