Asuro/.drone.yml
Kieron Morris 5e6e6c394a
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
Debugging & Testing
- Mistakes made in the curl methods used & the curl upload-file flag - rectified.
2025-03-09 21:18:49 +00:00

61 lines
1.8 KiB
YAML

kind: pipeline
type: docker
name: build
steps:
- name: build-image
image: plugins/docker
settings:
repo: t3hn3rd/asuro-build
tags: latest
dockerfile: Dockerfile
registry: docker.io
username:
from_secret: docker_username
password:
from_secret: docker_password
- name: compile
image: t3hn3rd/asuro-build:latest
depends_on:
- build-image
commands:
- git fetch --tags
- find . -type f -print0 | xargs -0 dos2unix
- chmod +x /drone/src/*.sh
- /drone/src/compile.sh
- name: upload-iso-artifact
image: alpine/git
depends_on:
- compile
# when:
# branch:
# - master
environment:
GITEA_TOKEN:
from_secret: gitea_token
commands:
- apk add --no-cache curl
- export BUILD_VERSION=$(git rev-parse --short HEAD)
- export ISO_NAME="Asuro-${BUILD_VERSION}.iso"
- ls -lah
- chmod +w Asuro.iso
- cp Asuro.iso "$ISO_NAME"
# Upload commit-specific ISO
- |
echo "Uploading ${ISO_NAME} to Gitea Packages..."
curl -X PUT "https://gitea.spexeah.com/api/packages/Spexeah/generic/asuro-iso/${BUILD_VERSION}/Asuro.iso" \
-H "Authorization: token $GITEA_TOKEN" \
--upload-file $ISO_NAME
# Update the "latest" alias (delete old latest, re-upload)
- |
echo "Updating latest ISO reference..."
curl -X DELETE "https://gitea.spexeah.com/api/packages/Spexeah/generic/asuro-iso/latest/Asuro.iso" \
-H "Authorization: token $GITEA_TOKEN" || echo "No previous latest version found."
curl -X POST "https://gitea.spexeah.com/api/packages/Spexeah/generic/asuro-iso/latest/Asuro.iso" \
-H "Authorization: token $GITEA_TOKEN" \
--upload-file $ISO_NAME