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

24 lines
481 B
YAML
Raw Normal View History

2022-08-13 01:10:02 +05:30
pipeline:
build:
2022-08-13 02:00:52 +05:30
when:
event: [push, pull_request, tag, deployment]
2022-08-13 01:10:02 +05:30
image: golang:latest
commands:
2022-08-13 01:17:59 +05:30
- go build -o segfautils
2022-08-13 02:00:52 +05:30
dockerize_n_publish:
when:
event: [push, tag, deployment]
name: dockerize and publish
2022-08-13 01:37:34 +05:30
image: plugins/docker
2022-08-13 01:38:51 +05:30
settings:
username:
from_secret: username
password:
from_secret: password
repo: projectsegfault/segfautils
tags: latest
dockerfile: Dockerfile
2022-08-13 01:37:34 +05:30
2022-08-13 01:17:59 +05:30