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,16 +1,18 @@
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
secrets: [key1, key2]
commands: commands:
- echo $$KEY - echo $KEY
- pwd - pwd
- ls - ls
- go build -o app . - go build -o app .