salt-build/.drone.yml
Paul f449dc05a4
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
update salt-build
2025-09-13 22:02:16 +02:00

64 lines
1.0 KiB
YAML

---
kind: pipeline
type: docker
name: default-amd64
platform:
os: linux
arch: amd64
workspace:
path: /salt
steps:
- name: build
image: python:latest
commands:
- apt update && apt install -y wget patchelf
- ./install.sh 3006.8
when:
event:
- tag
- name: publish
image: plugins/gitea-release
settings:
base_url: https://git.paulbsd.com
api_key:
from_secret: gitea_token
files: "/salt/out/*.tar.xz"
when:
event:
- tag
---
kind: pipeline
type: docker
name: default-arm64
platform:
os: linux
arch: arm64
workspace:
path: /salt
steps:
- name: build
image: python:latest
commands:
- apt update && apt install -y wget patchelf
- ./install.sh 3006.8
when:
event:
- tag
- name: publish
image: plugins/gitea-release
settings:
base_url: https://git.paulbsd.com
api_key:
from_secret: gitea_token
files: "/salt/out/*.tar.xz"
when:
event:
- tag