From 87f0c7de9cf1ec3c1f0bca6df2e1874a8ec068f4 Mon Sep 17 00:00:00 2001 From: askiiart Date: Mon, 10 Mar 2025 13:00:07 -0500 Subject: [PATCH] add drone config, fix script perms --- .drone.yml | 22 ++++++++++++++++++++++ run.sh | 0 2 files changed, 22 insertions(+) create mode 100644 .drone.yml mode change 100644 => 100755 run.sh diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..b61f201 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,22 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: Build fjord-launcher-unlocked fedora package + image: fedora + commands: + - '/drone/src/run.sh' + volumes: + - name: program-archives + path: /compiled + - name: fedora-repo + path: /repo + +volumes: + - name: program-archives + host: + path: /mnt/user/files/repos/archives/ + - name: fedora-repo + host: + path: /mnt/user/files/repos/fedora/x86_64/ \ No newline at end of file diff --git a/run.sh b/run.sh old mode 100644 new mode 100755