File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 44 workflow_call :
55 inputs :
66 environment :
7- default : ' Staging'
7+ default : Staging
88 type : string
99
1010 workflow_dispatch :
5858 id : route
5959 shell : bash
6060 run : |
61- {{#literal}} host=$(cf app "${APP_NAME}" | awk '/routes:/ {print $2}' | sed -E 's#^https?://##; s/,.*$//')
62- echo "url=https://$host" >> "$GITHUB_OUTPUT"{{/literal}}
61+ host=$(cf app "${APP_NAME}" | awk '/routes:/ {print $2}' | sed -E 's#^https?://##; s/,.*$//')
62+ echo "url=https://$host" >> "$GITHUB_OUTPUT"
6363 environment :
6464 name : ${{ inputs.environment || 'Staging' }}
6565 url : ${{ steps.route.outputs.url }}
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
1818 matrix :
1919 node-version : [20, 22]
2020 steps :
21- - uses : actions/checkout@v4
21+ - uses : actions/checkout@v5
2222 with :
2323 submodules : true
24- - uses : actions/setup-node@v4
24+ - uses : actions/setup-node@v5
2525 with :
2626 node-version : ${{ matrix.node-version }}
2727 - run : npm ci
You can’t perform that action at this time.
0 commit comments