From: Izuru Yakumo Date: Fri, 20 Sep 2024 12:33:01 +0000 (-0300) Subject: I have no idea anymore X-Git-Url: https://git.chaotic.ninja/gitweb/lab/?a=commitdiff_plain;h=73bb57925b95146814cf16b7fd624a270f7692ee80f7bd3cbf7263591aa69282;p=chaotic.ninja.git I have no idea anymore Signed-off-by: Izuru Yakumo --- diff --git a/.aya/publish b/.aya/publish new file mode 100755 index 0000000..0724047 --- /dev/null +++ b/.aya/publish @@ -0,0 +1,2 @@ +#!/bin/sh +printf "%s を /var/www/home にコピーしてください" "${AYA_OUTDIR}" diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..e3eb0dc --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,15 @@ +# $YakumoLabs$ +pipeline { + agent any + stages { + stage('Build') { + steps { + sh '/usr/pkg/bin/aya build' + archiveArtifacts artifacts: '*/.pub/**', fingerprint: true + } + } + stage('Deploy') { + sh '/usr/pkg/bin/aya publish' + } + } +}