19 lines
341 B
YAML
19 lines
341 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: hello-world
|
|
image: alpine/git
|
|
commands:
|
|
- echo "=== Successful Deployment ==="
|
|
- echo "Latest commit:"
|
|
- git rev-parse HEAD
|
|
- echo "Latest tag:"
|
|
- git describe --tags --abbrev=0 || echo "No tags found"
|