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 333c3e2 commit c70eb91Copy full SHA for c70eb91
.github/workflows/publish.yml
@@ -9,7 +9,7 @@ jobs:
9
publish:
10
strategy:
11
matrix:
12
- go-version: [ "1.13.x", "1.14.x" ]
+ go-version: [ "1.13.x" ]
13
os: [ ubuntu-latest ]
14
runs-on: ${{ matrix.os }}
15
steps:
@@ -18,6 +18,17 @@ jobs:
18
with:
19
fetch-depth: 1
20
21
+ - name: Create Release
22
+ id: create_release
23
+ uses: actions/create-release@v1
24
+ env:
25
+ GITHUB_TOKEN: ${{ github.token }}
26
+ with:
27
+ tag_name: ${{ github.ref }}
28
+ release_name: Release ${{ github.ref }}
29
+ draft: false
30
+ prerelease: true
31
+
32
- name: Set up Go
33
uses: actions/setup-go@v2
34
0 commit comments