-
Notifications
You must be signed in to change notification settings - Fork 33
40 lines (35 loc) · 916 Bytes
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Rust
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Runs at 2:00 UTC every day (to give the release process 2h to complete).
- cron: '0 2 * * *'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Prepare pages
run: ./prepare-pages.sh
- name: Deploy GitHub Pages
if: ${{ github.event_name != 'pull_request' }}
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 ../output/* .
git add .
git commit -m "Deploy $GITHUB_SHA to gh-pages"
git push --force