File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 11
11
steps :
12
12
- uses : actions/checkout@v4
13
13
14
- - name : Build and Test
15
- uses : ./.github/actions/ci
16
-
17
14
- name : Build documentation
18
15
uses : ./.github/actions/build-docs
19
16
Original file line number Diff line number Diff line change @@ -78,12 +78,12 @@ jobs:
78
78
ssm_parameter_pairs : ' /production/common/releasing/luarocks/token = LUAROCKS_API_TOKEN'
79
79
- uses : ./.github/actions/ci
80
80
with :
81
- rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).server }}
81
+ rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).server.rockspec }}
82
82
- uses : ./.github/actions/publish
83
83
name : Publish server package
84
84
with :
85
85
dry_run : ' false'
86
- rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).server }}
86
+ rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).server.rockspec }}
87
87
88
88
publish-redis :
89
89
permissions : # Needed for access to the LuaRocks token
@@ -100,9 +100,9 @@ jobs:
100
100
ssm_parameter_pairs : ' /production/common/releasing/luarocks/token = LUAROCKS_API_TOKEN'
101
101
- uses : ./.github/actions/ci
102
102
with :
103
- rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).redis }}
103
+ rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).redis.rockspec }}
104
104
- uses : ./.github/actions/publish
105
105
name : Publish redis package
106
106
with :
107
107
dry_run : ' false'
108
- rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).redis }}
108
+ rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).redis.rockspec }}
Original file line number Diff line number Diff line change 16
16
- name : Fetch release please manifest
17
17
id : manifest
18
18
run : |
19
- version=$(jq '."."' < .release-please-manifest.json)
19
+ version=$(jq --raw-output '."."' < .release-please-manifest.json)
20
20
echo "version=$version" >> $GITHUB_OUTPUT
21
21
- name : Construct rockspec package names
22
22
id : pkg-info
You can’t perform that action at this time.
0 commit comments