Skip to content

Commit

Permalink
Add ruxgo_book workflow and fix some bugs in release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
BeichenY1 committed Dec 29, 2023
1 parent 59d9b60 commit bd98997
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 2 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/deploy_book.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Deploy ruxgo_book
on:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write # To push a branch
pull-requests: write # To create a PR from that branch
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install latest mdbook
run: |
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
url="https://github.com/rust-lang/mdbook/releases/download/${tag}/mdbook-${tag}-x86_64-unknown-linux-gnu.tar.gz"
mkdir mdbook
curl -sSL $url | tar -xz --directory=./mdbook
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Install i18n support
run: cargo install mdbook-i18n

- name: Deploy GitHub Pages
run: |
# This assumes your book is in the root of your repository.
# Just add a `cd` here if you need to change to another directory.
cd doc/ruxgo_book/
mdbook build
git worktree add 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 --set-upstream origin gh-pages
27 changes: 25 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build and Release

on:
push:
tags:
- 'v*'
release:
types: [created]

Expand All @@ -11,12 +14,32 @@ jobs:
strategy:
fail-fast: false
matrix:
target: [x86_64-pc-windows-gnu, x86_64-unknown-linux-musl]
target: [x86_64-unknown-linux-musl, x86_64-pc-windows-gnu]

steps:
- uses: actions/checkout@master

- name: Setup cachix
uses: cachix/install-nix-action@v12
with:
# Nix 2.0 or higher
nix_version: 2.3.10

- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: "nightly"

- name: Cache Cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Compile and release
uses: rust-build/[email protected].3
uses: rust-build/[email protected].4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit bd98997

Please sign in to comment.