diff options
author | Aeddis <aeddis@deuxfleurs.fr> | 2024-12-10 22:23:01 +0100 |
---|---|---|
committer | Aeddis <aeddis@deuxfleurs.fr> | 2024-12-10 22:23:01 +0100 |
commit | 0d69a0e8c56bd4472e9b8480207d8c504462ae45 (patch) | |
tree | 8fc3d39b02665e5b9214934960c1a1b1ca312532 /.woodpecker | |
parent | 50f13a90644ca8057c1327d591d2e03679e68c09 (diff) | |
download | site-0d69a0e8c56bd4472e9b8480207d8c504462ae45.tar.gz site-0d69a0e8c56bd4472e9b8480207d8c504462ae45.zip |
build: add hello world workflox
Diffstat (limited to '.woodpecker')
-rw-r--r-- | .woodpecker/my-first-workflow.yaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.woodpecker/my-first-workflow.yaml b/.woodpecker/my-first-workflow.yaml new file mode 100644 index 0000000..16fb1bd --- /dev/null +++ b/.woodpecker/my-first-workflow.yaml @@ -0,0 +1,15 @@ +when: + - event: push + branch: main + +steps: + - name: build + image: debian + commands: + - echo "This is the build step" + - echo "binary-data-123" > executable + - name: a-test-step + image: golang:1.16 + commands: + - echo "Testing ..." + - ./executable
\ No newline at end of file |