Compare commits

..

No commits in common. "d47ea18103282c78a9f1b53d80c961e77b496ce8" and "864b3f8fd5807f734fd660df53e0208cb3355552" have entirely different histories.

2 changed files with 12 additions and 15 deletions

View File

@ -1,15 +0,0 @@
steps:
build:
image: docker
commands:
- "docker login git.snyman.info -u $DOCKER_USERNAME -p $DOCKER_TOKEN"
- "docker build --build-arg FLARUM_VERSION=$CI_COMMIT_TAG -t git.snyman.info/raoul/flarum:$CI_COMMIT_TAG -t git.snyman.info/raoul/flarum:latest ."
- "docker push git.snyman.info/raoul/flarum:$CI_COMMIT_TAG"
- "docker push git.snyman.info/raoul/flarum:latest"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
secrets:
- docker_username
- docker_token
when:
- event: tag

12
.woodpecker.yml Normal file
View File

@ -0,0 +1,12 @@
steps:
build:
image: docker
commands:
- "docker login git.snyman.info -u $DOCKER_USERNAME -p $DOCKER_TOKEN"
- "docker build -t git.snyman.info/raoul/flarum ."
- "docker push git.snyman.info/raoul/flarum"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
secrets:
- docker_username
- docker_token