mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-09-06 07:57:04 +08:00
fix: Maintenance wrong label (#229)
This commit is contained in:
@@ -31,6 +31,22 @@ jobs:
|
|||||||
version: 8
|
version: 8
|
||||||
run_install: false
|
run_install: false
|
||||||
|
|
||||||
|
- name: check github release done
|
||||||
|
run: |
|
||||||
|
for ((attempt=1; attempt<=10; attempt++)); do
|
||||||
|
if wget -q --spider "https://github.com/dreamhunter2333/cloudflare_temp_email/releases/latest/download/frontend.zip"; then
|
||||||
|
echo "frontend.zip found."
|
||||||
|
break
|
||||||
|
else
|
||||||
|
if [ $attempt -eq 10 ]; then
|
||||||
|
echo "Exceeded maximum retries. frontend.zip not found."
|
||||||
|
else
|
||||||
|
echo "frontend.zip not found. Retrying in 30 seconds..."
|
||||||
|
sleep 30
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
- name: Deploy Docs for ${{github.ref_name}}
|
- name: Deploy Docs for ${{github.ref_name}}
|
||||||
run: |
|
run: |
|
||||||
cd vitepress-docs/
|
cd vitepress-docs/
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ onMounted(async () => {
|
|||||||
{{ t('cleanupNow') }}
|
{{ t('cleanupNow') }}
|
||||||
</n-button>
|
</n-button>
|
||||||
</n-form-item-row>
|
</n-form-item-row>
|
||||||
<n-form-item-row :label="t('mailBoxLabel')">
|
<n-form-item-row :label="t('sendBoxLabel')">
|
||||||
<n-checkbox v-model:checked="cleanupModel.enableSendBoxAutoCleanup">
|
<n-checkbox v-model:checked="cleanupModel.enableSendBoxAutoCleanup">
|
||||||
{{ t('autoCleanup') }}
|
{{ t('autoCleanup') }}
|
||||||
</n-checkbox>
|
</n-checkbox>
|
||||||
|
|||||||
Reference in New Issue
Block a user