fix: Maintenance wrong label (#229)

This commit is contained in:
Dream Hunter
2024-05-12 18:09:42 +08:00
committed by GitHub
parent edc110b6ac
commit 62bec9ef90
2 changed files with 17 additions and 1 deletions
+16
View File
@@ -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/
+1 -1
View File
@@ -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>