Skip to content

Commit

Permalink
Switching to github actions for deployment (#39)
Browse files Browse the repository at this point in the history
* Switching to github actions for deployment
  • Loading branch information
tfoote authored Jun 12, 2021
1 parent 71c0a04 commit a0e8fc7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 16 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: publish-to-ghpages
on:
push:
branches:
- master
- move_to_actions
schedule:
- cron: '0 */4 * * *' # every 4 hours
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]

- name: Install and Build 🔧
run: |
./build.bash
echo 'planet.ros.org' | sudo tee output/CNAME
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: output # The folder the action should deploy.
single-commit: true
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit a0e8fc7

Please sign in to comment.