From 7178610201166280d600b62651b174ee2816c8b8 Mon Sep 17 00:00:00 2001 From: "Jaap H. Abbring" Date: Fri, 28 Oct 2022 00:23:03 +0200 Subject: [PATCH] Delete wercker.yml --- wercker.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 wercker.yml diff --git a/wercker.yml b/wercker.yml deleted file mode 100644 index ee1d3b1..0000000 --- a/wercker.yml +++ /dev/null @@ -1,34 +0,0 @@ -# this config file instructs wercker to build the html documentation using a perl -# script and then to deploy the html file and a zip file with the entire package -# to my website - adapted from Jan Tilly's config file for Very Simple sandbox -box: ubuntu -build: - steps: - - script: - name: create package - code: | - apt-get update && apt-get -yy install git zip - export TZ='Europe/Amsterdam' - remote="https://$GITHUB_TOKEN@github.com/$WERCKER_GIT_OWNER/kpp" - git clone $remote komments - perl komments/kpp.pl dynamicDiscreteChoice.m - zip dynamicDiscreteChoice.zip *.m *.md *.html -deploy: - steps: - - script: - name: deploy - code: | - apt-get update && apt-get -yy install git - export TZ='Europe/Amsterdam' - remote="https://$GITHUB_TOKEN@github.com/$WERCKER_GIT_OWNER/jabbring.github.io" - git clone $remote - cd jabbring.github.io - git config user.email "jaap@abbring.org" - git config user.name "jabbring" - mkdir -p dynamic-discrete-choice - cd dynamic-discrete-choice - cp -f ../../dynamicDiscreteChoice.m.html . - cp -f ../../dynamicDiscreteChoice.zip . - git add -f dynamicDiscreteChoice.m.html dynamicDiscreteChoice.zip - git commit -m "Update from Wercker" - git push origin master