Skip to content

Commit

Permalink
Merge pull request #3136 from ehuss/gh-actions
Browse files Browse the repository at this point in the history
Switch from travis to github actions.
  • Loading branch information
Manishearth committed Jul 30, 2021
2 parents aba44c1 + 21029cd commit 992abe2
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 22 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy
on:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install mdbook
run: |
mkdir mdbook
curl -Lf https://github.com/rust-lang/mdBook/releases/download/v0.4.10/mdbook-v0.4.10-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Generate Book
run: |
./generate-book.sh
- name: Deploy GitHub Pages
run: |
git worktree add gh-pages gh-pages
git config user.name "Deploy from CI"
git config user.email ""
cd gh-pages
# Delete the ref to avoid keeping history.
git update-ref -d refs/heads/gh-pages
rm -rf *
mv ../book/* .
git add .
git commit -m "Deploy $GITHUB_SHA to gh-pages"
git push --force
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

0 comments on commit 992abe2

Please sign in to comment.