File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 18
18
create_release :
19
19
# Only release on push to main
20
20
if : (github.ref == 'refs/heads/main' && github.event_name == 'push')
21
+ env :
22
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
21
23
runs-on : ubuntu-24.04
22
24
permissions :
23
25
contents : write
37
39
set-tag :
38
40
needs : [create_release]
39
41
if : always()
42
+ env :
43
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40
44
permissions :
41
45
contents : read
42
46
runs-on : ubuntu-latest
59
63
packages : write
60
64
needs : set-tag
61
65
if : always()
66
+ env :
67
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
62
68
steps :
63
69
- uses : actions/checkout@v4
64
70
- name : Install CLI tools from OpenShift Mirror
75
81
with :
76
82
registry : ${{ env.GITHUB_REGISTRY }}
77
83
username : ${{ github.actor }}
78
- password : ${{ secrets .GITHUB_TOKEN }}
84
+ password : ${{ env .GITHUB_TOKEN }}
79
85
80
86
- name : Extract metadata (tags, labels) for Docker
81
87
id : meta
You can’t perform that action at this time.
0 commit comments