File tree Expand file tree Collapse file tree 3 files changed +11
-118
lines changed Expand file tree Collapse file tree 3 files changed +11
-118
lines changed Original file line number Diff line number Diff line change 19
19
registry : registry.deckhouse.io
20
20
registry_login : ${{ secrets.REGISTRY_LOGIN }}
21
21
registry_password : ${{ secrets.REGISTRY_PASSWORD }}
22
+ werf_version : " 2.47.5+dk"
23
+ fox_access_token : ${{ secrets.FOX_ACCESS_TOKEN }}
24
+ deckhouse_private_repo : ${{ secrets.DECKHOUSE_PRIVATE_REPO }}
22
25
- uses : deckhouse/modules-actions/build@v4
23
26
with :
24
27
module_source : registry.deckhouse.io/deckhouse/ce/modules
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ inputs:
13
13
werf_version :
14
14
description : ' Werf version'
15
15
required : true
16
+ fox_access_token :
17
+ description : ' FOX GitLab access token for downloading werf'
18
+ required : true
19
+ deckhouse_private_repo :
20
+ description : ' Deckhouse private repository URL'
21
+ required : true
16
22
17
23
runs :
18
24
using : " composite"
23
29
shell : bash
24
30
run : |
25
31
curl --fail -sSL -o ~/bin/werf \
26
- -H "PRIVATE-TOKEN: ${{ secrets.FOX_ACCESS_TOKEN }}" \
27
- "https://${{ secrets.DECKHOUSE_PRIVATE_REPO }}/api/v4/projects/4052/packages/generic/werf/${{ inputs.werf_version }}/werf"
32
+ -H "PRIVATE-TOKEN: ${{ inputs.fox_access_token }}" \
33
+ "https://${{ inputs.deckhouse_private_repo }}/api/v4/projects/4052/packages/generic/werf/${{ inputs.werf_version }}/werf"
28
34
chmod +x ~/bin/werf
29
35
export PATH=~/bin:$PATH
30
36
You can’t perform that action at this time.
0 commit comments