15
15
default : dev
16
16
images :
17
17
description : A newline separated list of image names to deploy
18
- required : true
18
+ # required: true
19
19
type : string
20
20
tag :
21
21
description : The image tag to deploy
@@ -36,18 +36,25 @@ jobs:
36
36
with :
37
37
repository : ${{ inputs.deployment_repo }}
38
38
token : ${{ secrets.token }}
39
- - name : Merge hashes
40
- uses : input-output-hk/catalyst-ci/actions/merge@master
41
- with :
42
- hash_file : " src/kube/environments/${{ inputs.environment }}/hashes.json"
43
- images : ${{ inputs.images }}
44
- tag : ${{ inputs.tag }}
45
- - name : Run diff
46
- run : git --no-pager diff
47
- - name : Commit and push
48
- uses : EndBug/add-and-commit@v9
39
+ - name : Install updater CLI
40
+ uses : input-output-hk/catalyst-ci/actions/install@allow-multiple-install
49
41
with :
50
- author_name : catalyst-cibot
51
-
52
- message : " chore: updates ${{ github.event.repository.name }} deployments"
53
- push : true
42
+ asset : updater
43
+ - name : Test
44
+ run : |
45
+ updater --help
46
+ # - name: Merge hashes
47
+ # uses: input-output-hk/catalyst-ci/actions/merge@master
48
+ # with:
49
+ # hash_file: "src/kube/environments/${{ inputs.environment }}/hashes.json"
50
+ # images: ${{ inputs.images }}
51
+ # tag: ${{ inputs.tag }}
52
+ # - name: Run diff
53
+ # run: git --no-pager diff
54
+ # - name: Commit and push
55
+ # uses: EndBug/add-and-commit@v9
56
+ # with:
57
+ # author_name: catalyst-cibot
58
+
59
+ # message: "chore: updates ${{ github.event.repository.name }} deployments"
60
+ # push: true
0 commit comments