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 1111 steps :
1212 - uses : actions/checkout@v4
1313
14- - name : Build and Test
15- uses : ./.github/actions/ci
16-
1714 - name : Build documentation
1815 uses : ./.github/actions/build-docs
1916
Original file line number Diff line number Diff line change @@ -78,12 +78,12 @@ jobs:
7878 ssm_parameter_pairs : ' /production/common/releasing/luarocks/token = LUAROCKS_API_TOKEN'
7979 - uses : ./.github/actions/ci
8080 with :
81- rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).server }}
81+ rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).server.rockspec }}
8282 - uses : ./.github/actions/publish
8383 name : Publish server package
8484 with :
8585 dry_run : ' false'
86- rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).server }}
86+ rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).server.rockspec }}
8787
8888 publish-redis :
8989 permissions : # Needed for access to the LuaRocks token
@@ -100,9 +100,9 @@ jobs:
100100 ssm_parameter_pairs : ' /production/common/releasing/luarocks/token = LUAROCKS_API_TOKEN'
101101 - uses : ./.github/actions/ci
102102 with :
103- rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).redis }}
103+ rockspec : ${{ fromJSON(needs.rockspec-info.outputs.info).redis.rockspec }}
104104 - uses : ./.github/actions/publish
105105 name : Publish redis package
106106 with :
107107 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 1616 - name : Fetch release please manifest
1717 id : manifest
1818 run : |
19- version=$(jq '."."' < .release-please-manifest.json)
19+ version=$(jq --raw-output '."."' < .release-please-manifest.json)
2020 echo "version=$version" >> $GITHUB_OUTPUT
2121 - name : Construct rockspec package names
2222 id : pkg-info
You can’t perform that action at this time.
0 commit comments