This repository has been archived on 2022-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
Segfautils/.woodpecker.yml

23 lines
446 B
YAML
Raw Normal View History

2022-08-12 20:40:02 +01:00
pipeline:
build:
2022-08-12 21:30:52 +01:00
when:
event: [push, pull_request, tag, deployment]
2022-08-12 20:40:02 +01:00
image: golang:latest
commands:
2022-08-12 20:47:59 +01:00
- go build -o segfautils
2022-08-12 21:30:52 +01:00
dockerize_n_publish:
when:
2022-08-12 21:54:05 +01:00
event: [push]
2022-08-12 21:30:52 +01:00
name: dockerize and publish
2022-08-12 21:07:34 +01:00
image: plugins/docker
2022-08-12 21:08:51 +01:00
settings:
username:
from_secret: username
password:
from_secret: password
2022-08-12 21:38:03 +01:00
repo: projectsegfault/segfautils
2022-08-12 21:08:51 +01:00
dockerfile: Dockerfile
2022-08-12 21:07:34 +01:00
2022-08-12 20:47:59 +01:00