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 | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/.build.yml b/.build.yml deleted file mode 100644 index f5d0756..0000000 --- a/.build.yml +++ /dev/null @@ -1,25 +0,0 @@ -image: alpine/latest -packages: - - build-base - - make - - npm - - rsync - -secrets: - - 008c4f67-b864-47f8-9790-cd32f2ae8516 - -environment: - deploy: builds@gabrielgio.me - -tasks: - - setup: | - sudo npm install html-minifier -g - - build: | - cd tres - make - - deploy: | - cd tres - sshopts="ssh -o StrictHostKeyChecking=no" - rsync --rsh="$sshopts" -rP public/* $deploy:/var/www/tres.gabrielgio.me/ - - |