We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c671859 + 60a668a commit 1a85708Copy full SHA for 1a85708
docs/guides/all/scaffold-a-new-service.md
@@ -331,11 +331,14 @@ If the GitHub organization which will house your workflow is not the same as the
331
env:
332
//highlight-next-line
333
ORG_NAME: <Your ORG name>
334
- PORT_RUN_ID: ${{ fromJson(inputs.port_context).runId }}
335
336
steps:
337
- uses: actions/checkout@v4
338
-
+
+ - name: Extract runId from port_context
339
+ run: |
340
+ echo "PORT_RUN_ID=$(echo '${{ inputs.port_context }}' | jq -r .runId)" >> $GITHUB_ENV
341
342
- name: Create a log message
343
uses: port-labs/port-github-action@v1
344
with:
0 commit comments