diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-12-25 19:06:59 +0100 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-12-25 19:40:50 +0100 |
commit | e04eeb1a286311bf686ec592b6d9bb54e9afb54e (patch) | |
tree | 595736f53ced5d7a790bbda5691a3a50c2fb2f27 /build.yml | |
parent | 249e35361910d1dbb0b6f03fc1e1db0be119d185 (diff) | |
download | tres-master.tar.gz tres-master.tar.bz2 tres-master.zip |
This will be used to create an APK later.
Diffstat (limited to 'build.yml')
-rw-r--r-- | build.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/build.yml b/build.yml new file mode 100644 index 0000000..60231cc --- /dev/null +++ b/build.yml @@ -0,0 +1,23 @@ +image: alpine/latest +packages: + - rsync + +secrets: + - 008c4f67-b864-47f8-9790-cd32f2ae8516 + +environment: + build: builds@gabrielgio.me + artifact: artifacts.gabrielgio.me/archive/tres/ + version: 0.1.0 + +tasks: + - archive: | + cd tres + git archive \ + -o tres-$version.tar.gz \ + --prefix=tres-$version/ HEAD + - deploy_archive: | + cd tres + sshopts="ssh -o StrictHostKeyChecking=no" + rsync --mkpath --rsh="$sshopts" -rP *.tar.* $build:/var/www/$artifact + |