diff --git a/.gitignore b/.gitignore index 67d6c52..00dbdc8 100644 --- a/.gitignore +++ b/.gitignore @@ -46,6 +46,7 @@ testem.log /src/environments/environment.prod.ts /src/environments/environment.dev.ts /src/environments/environment.ci.ts +/src/environments/environments.tar # ========================= # Operating System Files diff --git a/.travis.yml b/.travis.yml index 22ae810..f0c1c52 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,12 +4,24 @@ language: node_js node_js: - 8 before_install: - - openssl aes-256-cbc -K $encrypted_9d2af3734b6c_key -iv $encrypted_9d2af3734b6c_iv -in src/environments/environment.ci.ts.enc -out src/environments/environment.ci.ts -d + - openssl aes-256-cbc -K $encrypted_9d2af3734b6c_key -iv $encrypted_9d2af3734b6c_iv -in src/environments/environments.tar.enc -out src/environments/environments.tar -d + - tar xf src/environments/environments.tar -C src/environments before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - npm config set spin false install: - - npm install + - npm install script: - - npm run ci + - npm run ci +before_deploy: + - ./bin/build-releases +deploy: + provider: releases + api_key: + secure: IZKEl1/LnzCN4/uMPKqUktURoNFjDmrybGKwrKbTPS27iXLrC9x4NwrQnOgipLF5h6Jeee4Qf1LhFCEpL/VTBTGMljQU2uOUFqn7TTGV5Ok7wxn2Z4CYeLDHMqDeGEECidAs8pB7I8lQvk5iUqmQT0NbuB0tDgavM9XCAecGUrFHh2tQaqPRGgZ1Q+1QB5d68EItSncMFKgRKja3Jq3u6ArF3uR3qY0dx9UKgcSUkKMnYbkBoEmiuCthdtwsH6WiIp4+K5GnVkGWxFa6KwdUJseHvUCuwS0Jp6lz47fP75xr4pHP45BxL7s549P60Iyr5AMRUge2+LPQV5QdbRH4guQV6qWI2L6Vw64fdC3lK00MhNFNO4M9p1T9eeldXhvUJwBDjzjoHlsrZysUMBy5G9CpQIVJtaPSVMWm/9yfPbu/B3k85cCHLb3fTos3altCWREIUScWIdDAHczJmmITUE9d5KljT8t2gLzCiCqB3BQ6ZzN8Ur68EIJ2ePuCO4644S+1shg5AXYDzXuUd30J57UGnuELQSMQkuZvMUQy8PmNO/iInIqpnuAwOwT4YD0MHgXrjD38a9+KszDjY+9HrIWcQE8P7AuN0iVf2voB5uLTOckkd4mXF9sskwoREVYJM+jz49HViggYyn1MHLsnlY5//vhMo5HNaf2DtT8fhk4= + file_glob: true + file: "../WebApp-Releases/*" + skip_cleanup: true + on: + tags: true diff --git a/CHANGELOG.md b/CHANGELOG.md index c894d71..e8f71a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ # Next Release +# v0.0.6 + +* Fix typo in Map Titles + # v0.0.5 * Change page name from Story Trail to Lancaster Independent Story diff --git a/package-lock.json b/package-lock.json index 60d8164..6d0ed01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "localloop-web", - "version": "0.0.5", + "version": "0.0.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d9af127..090cbf1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "localloop-web", - "version": "0.0.5", + "version": "0.0.6", "description": "LocalLoop Web - Web interface for LocalLoop app", "author": "", "url": "http://www.peartrade.org", diff --git a/src/environments/environment.ci.ts.enc b/src/environments/environment.ci.ts.enc deleted file mode 100644 index d7f9745..0000000 --- a/src/environments/environment.ci.ts.enc +++ /dev/null @@ -1,2 +0,0 @@ -gԟ^ f^ՍjAF$Qh0L+lD)9; -@&;q蠩 iE0#ҡŎbK7U%x_x/6m=P ?qFA$|'A製b1Ռ2~/,dL”P>S L \ No newline at end of file diff --git a/src/environments/environments.tar.enc b/src/environments/environments.tar.enc new file mode 100644 index 0000000..d5414b3 Binary files /dev/null and b/src/environments/environments.tar.enc differ