Skip to content

Commit 9d5b919

Browse files
committed
Fix workflow script
1 parent fc261c9 commit 9d5b919

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/build_and_release.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@ jobs:
2727
env:
2828
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
2929

30-
release:
31-
name: Draft a Release on GitHub Releases
32-
runs-on: ubuntu-latest
33-
needs: build
34-
if: startsWith(github.ref, 'refs/tags/')
35-
steps:
36-
- name: Checkout code
37-
uses: actions/checkout@v2
38-
- name: Create GitHub Release
39-
id: create_release
40-
uses: actions/create-release@v1
41-
env:
42-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43-
with:
44-
tag_name: ${{ github.ref }}
45-
release_name: ${{ github.ref }}
46-
body: |
47-
:construction: Work in Progress
48-
draft: true
49-
prerelease: false
30+
release:
31+
name: Draft a Release on GitHub Releases
32+
runs-on: ubuntu-latest
33+
needs: build
34+
if: startsWith(github.ref, 'refs/tags/')
35+
steps:
36+
- name: Checkout code
37+
uses: actions/checkout@v2
38+
- name: Create GitHub Release
39+
id: create_release
40+
uses: actions/create-release@v1
41+
env:
42+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43+
with:
44+
tag_name: ${{ github.ref }}
45+
release_name: ${{ github.ref }}
46+
body: |
47+
:construction: Work in Progress
48+
draft: true
49+
prerelease: false

0 commit comments

Comments
 (0)