Files
nwxraybot/.woodpecker.yml
Sergey Elpashev d61740d4d4
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Feat: env file
2024-12-27 20:34:48 +03:00

25 lines
528 B
YAML

when:
- event: push
branch: deploy
steps:
- name: build
image: docker:latest
commands:
- echo "$ENV_FILE" > .env
- docker build -t aboba .
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
ENV_FILE:
from_secret: ENV_FILE
- name: deploy
image: docker:latest
commands:
- echo "$ENV_FILE" > .env
- sh run.sh
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
ENV_FILE:
from_secret: ENV_FILE