forked from ChatGPTNextWeb/ChatGPT-Next-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix: Routes `/api/cors/[...path]` was not configured to run with the Edge Runtime * add workflows/deploy preview * add delete preview scripts * add workflow_dispatch * test pr deploy * add workflows/deploy preview * add delete preview scripts * add workflow_dispatch * test pr deploy * fix vercel alias domains * fix: cicd , add pull_request_target * fix: cicd, vercel domain suffix secret * chore: change default submit key * fix: cicd, delete vercel pre * fix: cicd, vercel alias domain * fix: cicd, delete vercel pre (ChatGPTNextWeb#3910) * fix: cicd, delete velcel pre * fix: cicd, alias domain env name * fix: cicd, remove workflow_dispatch * fix: cicd, checkout sha * Add gpt-4-0125-preview (ChatGPTNextWeb#3924) * update google api region (ChatGPTNextWeb#3934) Co-authored-by: GH Action - Upstream Sync <[email protected]> * Feat Models [GPT-4-turbo] (ChatGPTNextWeb#3932) [+] feat(constant.ts): add new models to DEFAULT_MODELS array --------- Co-authored-by: Yasin <[email protected]> Co-authored-by: 孙高猛 <[email protected]> Co-authored-by: sungaomeng <[email protected]> Co-authored-by: fred-bf <[email protected]> Co-authored-by: Leo Li <[email protected]> Co-authored-by: NieXi <[email protected]> Co-authored-by: GH Action - Upstream Sync <[email protected]> Co-authored-by: H0llyW00dzZ <[email protected]>
- Loading branch information
1 parent
6633add
commit a69e25a
Showing
7 changed files
with
179 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: VercelPreviewDeployment | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- synchronize | ||
|
||
env: | ||
VERCEL_TEAM: ${{ secrets.VERCEL_TEAM }} | ||
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | ||
VERCEL_PR_DOMAIN_SUFFIX: ${{ secrets.VERCEL_PR_DOMAIN_SUFFIX }} | ||
|
||
permissions: | ||
contents: read | ||
statuses: write | ||
pull-requests: write | ||
|
||
jobs: | ||
deploy-preview: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Extract branch name | ||
shell: bash | ||
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> "$GITHUB_OUTPUT" | ||
id: extract_branch | ||
|
||
- name: Hash branch name | ||
uses: pplanel/[email protected] | ||
id: hash_branch | ||
with: | ||
input: ${{ steps.extract_branch.outputs.branch }} | ||
method: MD5 | ||
|
||
- name: Set Environment Variables | ||
id: set_env | ||
if: github.event_name == 'pull_request_target' | ||
run: | | ||
echo "VERCEL_ALIAS_DOMAIN=${{ github.event.pull_request.number }}-${{ github.workflow }}.${VERCEL_PR_DOMAIN_SUFFIX}" >> $GITHUB_OUTPUT | ||
- name: Install Vercel CLI | ||
run: npm install --global vercel@latest | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v2 | ||
id: cache-npm | ||
with: | ||
path: ~/.npm | ||
key: npm-${{ hashFiles('package-lock.json') }} | ||
restore-keys: npm- | ||
|
||
- name: Pull Vercel Environment Information | ||
run: vercel pull --yes --environment=preview --token=${VERCEL_TOKEN} | ||
|
||
- name: Deploy Project Artifacts to Vercel | ||
id: vercel | ||
env: | ||
META_TAG: ${{ steps.hash_branch.outputs.digest }}-${{ github.run_number }}-${{ github.run_attempt}} | ||
run: | | ||
set -e | ||
vercel pull --yes --environment=preview --token=${VERCEL_TOKEN} | ||
vercel build --token=${VERCEL_TOKEN} | ||
vercel deploy --prebuilt --archive=tgz --token=${VERCEL_TOKEN} --meta base_hash=${{ env.META_TAG }} | ||
DEFAULT_URL=$(vercel ls --token=${VERCEL_TOKEN} --meta base_hash=${{ env.META_TAG }}) | ||
ALIAS_URL=$(vercel alias set ${DEFAULT_URL} ${{ steps.set_env.outputs.VERCEL_ALIAS_DOMAIN }} --token=${VERCEL_TOKEN} --scope ${VERCEL_TEAM}| awk '{print $3}') | ||
echo "New preview URL: ${DEFAULT_URL}" | ||
echo "New alias URL: ${ALIAS_URL}" | ||
echo "VERCEL_URL=${ALIAS_URL}" >> "$GITHUB_OUTPUT" | ||
- uses: mshick/add-pr-comment@v2 | ||
with: | ||
message: | | ||
Your build has completed! | ||
[Preview deployment](${{ steps.vercel.outputs.VERCEL_URL }}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Removedeploypreview | ||
|
||
permissions: | ||
contents: read | ||
statuses: write | ||
pull-requests: write | ||
|
||
env: | ||
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
delete-deployments: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Extract branch name | ||
shell: bash | ||
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | ||
id: extract_branch | ||
|
||
- name: Hash branch name | ||
uses: pplanel/[email protected] | ||
id: hash_branch | ||
with: | ||
input: ${{ steps.extract_branch.outputs.branch }} | ||
method: MD5 | ||
|
||
- name: Call the delete-deployment-preview.sh script | ||
env: | ||
META_TAG: ${{ steps.hash_branch.outputs.digest }} | ||
run: | | ||
bash ./scripts/delete-deployment-preview.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
# Set the pipefail option. | ||
set -o pipefail | ||
|
||
# Get the Vercel API endpoints. | ||
GET_DEPLOYMENTS_ENDPOINT="https://api.vercel.com/v6/deployments" | ||
DELETE_DEPLOYMENTS_ENDPOINT="https://api.vercel.com/v13/deployments" | ||
|
||
# Create a list of deployments. | ||
deployments=$(curl -s -X GET "$GET_DEPLOYMENTS_ENDPOINT/?projectId=$VERCEL_PROJECT_ID&teamId=$VERCEL_ORG_ID" -H "Authorization: Bearer $VERCEL_TOKEN ") | ||
#deployments=$(curl -s -X GET "$GET_DEPLOYMENTS_ENDPOINT/?projectId=$VERCEL_PROJECT_ID" -H "Authorization: Bearer $VERCEL_TOKEN ") | ||
|
||
# Filter the deployments list by meta.base_hash === meta tag. | ||
filtered_deployments=$(echo -E $deployments | jq --arg META_TAG "$META_TAG" '[.deployments[] | select(.meta.base_hash | type == "string" and contains($META_TAG)) | .uid] | join(",")') | ||
filtered_deployments="${filtered_deployments//\"/}" # Remove double quotes | ||
|
||
# Clears the values from filtered_deployments | ||
IFS=',' read -ra values <<<"$filtered_deployments" | ||
|
||
echo "META_TAG ${META_TAG}" | ||
echo "Filtered deployments ${filtered_deployments}" | ||
|
||
# Iterate over the filtered deployments list. | ||
for uid in "${values[@]}"; do | ||
echo "Deleting ${uid}" | ||
|
||
delete_url="${DELETE_DEPLOYMENTS_ENDPOINT}/${uid}?teamId=${VERCEL_ORG_ID}" | ||
echo $delete_url | ||
|
||
# Make DELETE a request to the /v13/deployments/{id} endpoint. | ||
curl -X DELETE $delete_url -H "Authorization: Bearer $VERCEL_TOKEN" | ||
|
||
echo "Deleted!" | ||
done |