@@ -41,12 +41,12 @@ jobs:
41
41
steps :
42
42
- uses : actions/checkout@v4
43
43
- name : Install Forge
44
- uses : input-output-hk/catalyst-forge/actions/install@master
44
+ uses : input-output-hk/catalyst-forge/actions/install@adds-docs-release
45
45
if : ${{ inputs.forge_version != 'local' }}
46
46
with :
47
47
version : ${{ inputs.forge_version }}
48
48
- name : Install Local Forge
49
- uses : input-output-hk/catalyst-forge/actions/install-local@master
49
+ uses : input-output-hk/catalyst-forge/actions/install-local@adds-docs-release
50
50
if : ${{ inputs.forge_version == 'local' }}
51
51
with :
52
52
earthly_token : ${{ secrets.earthly_token }}
@@ -61,14 +61,14 @@ jobs:
61
61
echo "skip=false" >> $GITHUB_OUTPUT
62
62
fi
63
63
- name : Setup CI
64
- uses : input-output-hk/catalyst-forge/actions/setup@master
64
+ uses : input-output-hk/catalyst-forge/actions/setup@adds-docs-release
65
65
with :
66
66
skip_docker : ' true'
67
67
skip_github : ' true'
68
68
skip_earthly : ${{ steps.local.outputs.skip }}
69
69
- name : Discovery
70
70
id : discovery
71
- uses : input-output-hk/catalyst-forge/actions/discovery@master
71
+ uses : input-output-hk/catalyst-forge/actions/discovery@adds-docs-release
72
72
with :
73
73
filters : |
74
74
${{ env.FORGE_REGEX_CHECK }}
80
80
${{ env.FORGE_REGEX_PUBLISH }}
81
81
82
82
check :
83
- uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@master
83
+ uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@adds-docs-release
84
84
needs : [discover]
85
85
if : (fromJson(needs.discover.outputs.earthfiles)['^check(-.*)?$'] != null) && !failure() && !cancelled()
86
86
with :
92
92
earthly_token : ${{ secrets.earthly_token }}
93
93
94
94
build :
95
- uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@master
95
+ uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@adds-docs-release
96
96
needs : [discover, check]
97
97
if : (fromJson(needs.discover.outputs.earthfiles)['^build(-.*)?$'] != null) && !failure() && !cancelled()
98
98
with :
@@ -104,7 +104,7 @@ jobs:
104
104
earthly_token : ${{ secrets.earthly_token }}
105
105
106
106
package :
107
- uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@master
107
+ uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@adds-docs-release
108
108
needs : [discover, check, build]
109
109
if : (fromJson(needs.discover.outputs.earthfiles)['^package(-.*)?$'] != null) && !failure() && !cancelled()
110
110
with :
@@ -116,7 +116,7 @@ jobs:
116
116
earthly_token : ${{ secrets.earthly_token }}
117
117
118
118
test :
119
- uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@master
119
+ uses : input-output-hk/catalyst-forge/.github/workflows/run.yml@adds-docs-release
120
120
needs : [discover, check, build, package]
121
121
if : (fromJson(needs.discover.outputs.earthfiles)['^test(-.*)?$'] != null) && !failure() && !cancelled()
122
122
with :
@@ -128,7 +128,7 @@ jobs:
128
128
earthly_token : ${{ secrets.earthly_token }}
129
129
130
130
docs :
131
- uses : input-output-hk/catalyst-forge/.github/workflows/docs.yml@master
131
+ uses : input-output-hk/catalyst-forge/.github/workflows/docs.yml@adds-docs-release
132
132
needs : [discover, check, build, test]
133
133
if : (fromJson(needs.discover.outputs.earthfiles)['^docs(-.*)?$'] != null) && !failure() && !cancelled()
134
134
with :
@@ -138,7 +138,7 @@ jobs:
138
138
earthly_token : ${{ secrets.earthly_token }}
139
139
140
140
release :
141
- uses : input-output-hk/catalyst-forge/.github/workflows/release.yml@master
141
+ uses : input-output-hk/catalyst-forge/.github/workflows/release.yml@adds-docs-release
142
142
needs : [discover, check, build, test]
143
143
if : (fromJson(needs.discover.outputs.releases)[0] != null) && !failure() && !cancelled()
144
144
with :
@@ -150,7 +150,7 @@ jobs:
150
150
earthly_token : ${{ secrets.earthly_token }}
151
151
152
152
deploy :
153
- uses : input-output-hk/catalyst-forge/.github/workflows/deploy.yml@master
153
+ uses : input-output-hk/catalyst-forge/.github/workflows/deploy.yml@adds-docs-release
154
154
needs : [discover, check, build, test, release]
155
155
if : (fromJson(needs.discover.outputs.deployments)[0] != null) && github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && !failure() && !cancelled()
156
156
with :
0 commit comments