Compare commits

...

23 commits

Author SHA1 Message Date
c20c16b579 Update .yml files 2025-03-27 04:46:33 +08:00
0270950fe0 Update .yml files 2025-03-27 04:44:50 +08:00
7b230df7b5 Update .yml files 2025-03-27 04:41:32 +08:00
0bcc628b2e Drop ntfy 2025-03-27 04:39:56 +08:00
2a2b47c6e4 Update .yml files 2025-03-27 04:37:52 +08:00
dac6796cc6 Revert message 2025-03-27 04:32:52 +08:00
ae48df0b94 Fix incorrect message 2025-03-27 04:28:26 +08:00
20bf73f602 Add git to package dependency 2025-03-27 04:25:29 +08:00
0fe627d6d4 Fix broken step dependency 2025-03-27 04:21:22 +08:00
b9c5840afe Update ntfy step 2025-03-27 04:20:00 +08:00
c22a31747c Update ntfy step 2025-03-27 04:01:44 +08:00
259628591d Remove duplicate .yml steps 2025-03-27 04:00:43 +08:00
b24416e3ab Update ntfy step 2025-03-27 03:59:27 +08:00
c3e1eca5a6 Add ntfy step 2025-03-27 03:54:45 +08:00
b003e10c7b Revert .yml files as email plugin is broken 2025-03-27 03:31:01 +08:00
19f6e8e6f3 Test dsn errors 2025-03-27 03:24:15 +08:00
a226fc8ce5 Test dsn errors 2025-03-27 03:22:40 +08:00
aa2798e854 Test dsn errors 2025-03-27 03:19:27 +08:00
73031fb0b9 Add debug to .yaml files 2025-03-27 02:54:02 +08:00
35b104660d Update .yml files 2025-03-27 02:29:24 +08:00
2a976aeeb7 Fix image typo 2025-03-27 02:12:16 +08:00
dd6daaa8e6 Update .yml files 2025-03-27 02:09:47 +08:00
d841f3f3d4 Update .yml files 2025-03-27 02:03:14 +08:00
2 changed files with 39 additions and 12 deletions

View file

@ -4,15 +4,6 @@ labels:
steps:
- name: build
image: docker
when:
- branch: master
event: push
commands:
- docker build -t "$REGISTRY_IMAGE_TAG" .
- echo "$FORGEJO_REGISTRY_PASSWORD" | docker login "$FORGEJO_REGISTRY_URL" --password-stdin -u "$FORGEJO_REGISTRY_USERNAME"
- docker push "$REGISTRY_IMAGE_TAG"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
FORGEJO_REGISTRY_URL:
from_secret: FORGEJO_REGISTRY_URL
@ -22,3 +13,25 @@ steps:
from_secret: FORGEJO_REGISTRY_PASSWORD
REGISTRY_IMAGE_TAG:
from_secret: REGISTRY_IMAGE_TAG
commands:
- docker build -t "$REGISTRY_IMAGE_TAG" .
- echo "$FORGEJO_REGISTRY_PASSWORD" | docker login "$FORGEJO_REGISTRY_URL" --password-stdin -u "$FORGEJO_REGISTRY_USERNAME"
- docker push "$REGISTRY_IMAGE_TAG"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- name: discord
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: DISCORD_WEBHOOK_ID
webhook_token:
from_secret: DISCORD_WEBHOOK_TOKEN
message: >
{{#success build.status}}
{{repo.name}} build #{{build.number}} {{build.status}}
{{/success}}
depends_on: build
when:
- branch: master
event: push

View file

@ -1,15 +1,29 @@
steps:
- name: deploy
image: node:18-alpine
when:
- branch: master
event: push
environment:
CLOUDFLARE_ACCOUNT_ID:
from_secret: CLOUDFLARE_ACCOUNT_ID
CLOUDFLARE_API_TOKEN:
from_secret: CLOUDFLARE_API_TOKEN
commands:
- apk add git
- npm install --save-dev
- npm run build
- npx wrangler pages deploy "./build/" --project-name blog --branch master --commit-dirty
- name: discord
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: DISCORD_WEBHOOK_ID
webhook_token:
from_secret: DISCORD_WEBHOOK_TOKEN
message: >
{{#success build.status}}
{{repo.name}} deployment #{{build.number}} {{build.status}}
{{/success}}
depends_on: deploy
when:
- branch: master
event: push