File tree 2 files changed +30
-4
lines changed
2 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 14
14
15
15
env :
16
16
# Common versions
17
- GO_VERSION : ' 1.24.1 '
18
- GOLANGCI_VERSION : ' v1.64.5 '
19
- DOCKER_BUILDX_VERSION : ' v0.21.2 '
17
+ GO_VERSION : ' 1.24.3 '
18
+ GOLANGCI_VERSION : ' v1.64.8 '
19
+ DOCKER_BUILDX_VERSION : ' v0.23.0 '
20
20
21
21
# These environment variables are important to the Crossplane CLI install.sh
22
22
# script. They determine what version it installs.
@@ -142,8 +142,8 @@ jobs:
142
142
uses : actions/download-artifact@v4
143
143
with :
144
144
path : .
145
- pattern : package-*
146
145
merge-multiple : true
146
+ pattern : " !*.dockerbuild" # This gets uploaded by docker/build-push-action but must be skipped: https://github.com/actions/toolkit/pull/1874
147
147
148
148
- name : Setup the Crossplane CLI
149
149
run : " curl -sL https://raw.githubusercontent.com/crossplane/crossplane/master/install.sh | sh"
Original file line number Diff line number Diff line change
1
+ name : Tag
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ version :
7
+ description : ' Release version (e.g. v0.1.0)'
8
+ required : true
9
+ message :
10
+ description : ' Tag message'
11
+ required : true
12
+
13
+ jobs :
14
+ create-tag :
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - name : Checkout
19
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20
+
21
+ - name : Create Tag
22
+ uses : negz/create-tag@39bae1e0932567a58c20dea5a1a0d18358503320 # v1
23
+ with :
24
+ version : ${{ github.event.inputs.version }}
25
+ message : ${{ github.event.inputs.message }}
26
+ token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments