This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/workers/rebuild/index.js
Cory Dransfeldt 88a4ec4acd
# This is a combination of 3 commits.
# This is the 1st commit message:

fix: redirects + update root cdn url

# This is the commit message #2:

chore: workflow

# This is the commit message #3:

chore: naming
2024-06-09 11:16:24 -07:00

17 lines
No EOL
414 B
JavaScript

export default {
async scheduled(event, env, ctx) {
const deployHookUrl = env.DEPLOY_HOOK_URL;
const response = await fetch(deployHookUrl, {
method: 'POST',
});
if (!response.ok) {
const errorText = await response.text();
console.error(`Error triggering deploy: ${response.statusText}`, errorText);
return;
}
console.log('Deploy triggered successfully');
}
};