mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-05 01:36:04 +00:00
Fix netlify not using aliases containing a slash (#1819)
This commit is contained in:
parent
fa0bea492e
commit
e671aa4aa8
2 changed files with 3 additions and 3 deletions
2
.github/workflows/deploy.yml
vendored
2
.github/workflows/deploy.yml
vendored
|
@ -56,7 +56,7 @@ jobs:
|
|||
- name: Run netlify CLI deployment
|
||||
env:
|
||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||
run: bash netlify/deploy.sh "${{ github.event.number }}" "${{ github.head_ref }}" "${{ github.event.pull_request.title }}"
|
||||
run: bash netlify/deploy.sh "${{ github.event.number }}" "${{ github.event.pull_request.title }}"
|
||||
id: netlify-result
|
||||
|
||||
- name: Mark GitHub deployment as finished
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
#
|
||||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
deployid="$1-$2"
|
||||
json=$(yarn netlify deploy --build --context deploy-preview --alias "$1" --json --message "[#$1] $2")
|
||||
|
||||
json=$(yarn netlify deploy --build --context deploy-preview --alias "${deployid}" --json --message "[#$1] $3")
|
||||
echo "${json}"
|
||||
|
||||
url=$(echo "${json}" | jq -r .deploy_url)
|
||||
logs=$(echo "${json}" | jq -r .logs)
|
||||
|
|
Loading…
Reference in a new issue