11 lines
225 B
YAML
11 lines
225 B
YAML
when:
|
|
- event: push
|
|
branch: main
|
|
|
|
steps:
|
|
- name: build
|
|
image: golang:1.23
|
|
commands:
|
|
- echo "This is the build step"
|
|
- echo "binary-data-123" > executable
|
|
- echo "something else" > executable2 |