File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -25,20 +25,23 @@ jobs:
25
25
needs : unit
26
26
steps :
27
27
- name : Setup Go
28
- uses : actions/setup-go@v1
28
+ uses : actions/setup-go@v2.1.3
29
29
with :
30
- go-version : 1.16
30
+ go-version : 1.16.x
31
+ - name : Checkout
32
+ uses : actions/checkout@v2
33
+ - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true
31
34
- name : Reset Draft Release
35
+ id : reset
32
36
uses : paketo-buildpacks/github-config/actions/release/reset-draft@main
33
37
with :
34
38
repo : ${{ github.repository }}
35
39
token : ${{ github.token }}
36
- - name : Checkout
37
- uses : actions/checkout@v2
38
- - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
39
40
- name : Tag
40
41
id : tag
41
42
uses : paketo-buildpacks/github-config/actions/tag/increment-tag@main
43
+ with :
44
+ current_version : ${{ steps.reset.outputs.current_version }}
42
45
- name : Package Jam
43
46
run : ./scripts/package.sh
44
47
- name : Create Draft Release
You can’t perform that action at this time.
0 commit comments