Compare commits

..

3 Commits

Author SHA1 Message Date
ff615e2b67 Обновить .woodpecker/pipeline.yml
Some checks are pending
ci/woodpecker/push/pipeline Pipeline is pending
ci/woodpecker/manual/pipeline Pipeline is pending
2025-04-05 23:59:19 +03:00
1a93336d30 Deploy: change deployment
Some checks are pending
ci/woodpecker/push/pipeline Pipeline was successful
ci/woodpecker/manual/pipeline Pipeline is pending
2025-01-22 13:26:00 +03:00
17a1e4bb36 Feat: change deployment
All checks were successful
ci/woodpecker/push/pipeline Pipeline was successful
2025-01-22 13:25:45 +03:00

View File

@@ -1,5 +1,3 @@
when:
- branch: deploy
steps: steps:
- name: build - name: build
image: docker:latest image: docker:latest
@@ -12,7 +10,8 @@ steps:
ENV_FILE: ENV_FILE:
from_secret: ENV_FILE from_secret: ENV_FILE
when: when:
- event: [push, manual] - branch: [deploy, master]
event: [push, manual]
- name: deploy - name: deploy
image: docker:latest image: docker:latest
commands: commands:
@@ -23,6 +22,7 @@ steps:
environment: environment:
ENV_FILE: ENV_FILE:
from_secret: ENV_FILE from_secret: ENV_FILE
depends_on: [build] depends_on: build
when: when:
- event: deployment - branch: deploy
event: manual