Skip to content

Commit

Permalink
update deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkrobe committed Jan 9, 2024
1 parent 99783c8 commit 19b80fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
language: r
pandoc_version: 1.19.2.1

env:
global:
- secure: cRz1UWBjRBRPS6ALlz1ohP5i6Ia143djw2VY4qMU6nBpeZG6zS5KXj/7jxvVFVfSw9lgO5rDEDNX9RwA+ird3hzw/ELOmAGvgiVlcExvSUJXk3lFkfEFmxnlf4g6BCwntLY9Z0O6pfCOzhGz1V0j+8Vo/Sj2wN+053l4qjBgLKjC+P2eRloUZye4yfP8I4Hw7g1WQTXY5tbjJTE1Wejfls9d8q8oxj0VDJOEb5QlAnOSwy1J2Lnx9JJD+kZxe2Lwv+/fXW8I+6C/OQAKdFBZVH0VkuTiVcnE+uXC1gUdXZIJradwTeuNY+cRB4YIsrdlDaApy03tUlnZrZwDT0QXRxHXBiTeG0pgKaWRGGQz7N3vSto5GYFXI28TFTxlEVUBCsoYuACwqeYHL+eUtLNdKO108m24MAJe50Uos/xPXzAXCq4tM6Js2ny5buPFZ/1kDti/mdCCXmZwgzi3XJTzjrZGgcNtE2bQ1GhlJ0hXhS21HDwhK8OqfMJwvRPOd5NhV0WmOMyVttd8JpHlXG2Dm4rOsBEftf+KYdaZggGXzMqtfeGrZb+EgRC4tavO+Vyl1Z3QWtj7Or3S5OCyqlCL4UL73gUJ4DUvQQ3pChQvqSMddiV4cwWLCMpTx6iSnusvQkAYQwaw062ax0mo/J3+28IsvdyBqUUIzZsIlOYuEJE=

sudo: false

cache:
Expand All @@ -19,7 +15,8 @@ before_install:

before_script:
- chmod +x ./_build.sh
- chmod +x ./_deploy.sh

script:
- ./_build.sh

- ./_desploy.sh
6 changes: 3 additions & 3 deletions _deploy.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

# configure your name and email if you have not done so
git config --global user.email "[email protected]"
git config --global user.name "Tobias Gerstenberg"
git config --global user.email "[email protected]"
git config --global user.name "Robert Hawkins"

# clone the repository to the book-output directory
git clone -b master \
Expand All @@ -13,4 +13,4 @@ git rm -rf *
cp -r ../docs/* ./
git add --all *
git commit -m "Update the book"
git push -q origin master
git push -q origin master

0 comments on commit 19b80fb

Please sign in to comment.