Skip to content

Commit

Permalink
Merge pull request #2 from rustx-labs/main
Browse files Browse the repository at this point in the history
feat: support zh_CN auto deploy
  • Loading branch information
uvd authored Oct 30, 2024
2 parents 93fbe16 + 8de9562 commit bd36f53
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 274 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-mdbook/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
curl -sSL "$url" | tar -xz --directory=bin
shell: bash
- name: Build the book and check for broken links
run: mdbook build
run: MDBOOK_BOOK__LANGUAGE=zh_CN mdbook build
env:
RUST_LOG: INFO
shell: bash
59 changes: 0 additions & 59 deletions .github/workflows/lint.yaml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/pages-preview.yaml

This file was deleted.

75 changes: 0 additions & 75 deletions .github/workflows/publish.yaml

This file was deleted.

57 changes: 57 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Sample workflow for building and deploying a mdBook site to GitHub Pages
#
# To get started with mdBook see: https://rust-lang.github.io/mdBook/index.html
#
name: Deploy mdBook site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install mdbook-i18n-helpers
run: |
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
rustup update
cargo install mdbook-i18n-helpers
- uses: ./.github/actions/build-mdbook
with:
with_linkcheck: "false"
if: github.event.action != 'closed'
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./book/html

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
51 changes: 0 additions & 51 deletions .github/workflows/update-binaries.yaml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/updates.yaml

This file was deleted.

0 comments on commit bd36f53

Please sign in to comment.