Skip to content

Commit fec4f35

Browse files
authored
ci: fix calling convention of std.yml from std-release.yml (#1143)
You don’t use `steps:`, see <https://docs.github.com/en/actions/using-workflows/reusing-workflows#using-inputs-and-secrets-in-a-reusable-workflow> I don’t know how this ever worked… (again)
1 parent da278b3 commit fec4f35

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/std-release.yaml

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ on:
77
jobs:
88
call-std:
99
if: startsWith(github.event.release.name, '@cardano-sdk/cardano-services@')
10-
steps:
11-
- uses: ./.github/workflows/std.yml
12-
with:
13-
deploy-dev-preprod: true
14-
deploy-dev-mainnet: true
10+
uses: ./.github/workflows/std.yml
11+
with:
12+
deploy-dev-preprod: true
13+
deploy-dev-mainnet: true

0 commit comments

Comments
 (0)