1
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-06-24 11:49:11 +08:00
parent 2eab0809de
commit 45c226c967

View File

@ -1,17 +1,19 @@
kind: pipeline
type: docker
name: default
workspace: workspace:
base: /srv/drone-demo base: /srv/drone-demo
path: . path: .
pipeline: steps:
build: - name: build
image: golang:alpine image: golang:alpine
# pull: true environment:
environment: KEY: VALUE
- KEY=VALUE commands:
secrets: [key1, key2] - echo $KEY
commands: - pwd
- echo $$KEY - ls
- pwd - go build -o app .
- ls - ./app
- go build -o app .
- ./app