Skip to content

v0.4.36-localization-v0.6 #8

v0.4.36-localization-v0.6

v0.4.36-localization-v0.6 #8

Workflow file for this run

name: Deploy
on:
release:
types: [created]
defaults:
run:
shell: bash
permissions:
contents: write
jobs:
release:
name: Deploy Release
runs-on: ${{ matrix.os }}
strategy:
matrix:
target:
- aarch64-unknown-linux-musl
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
- x86_64-apple-darwin
- x86_64-pc-windows-msvc
include:
- target: aarch64-unknown-linux-musl
os: ubuntu-20.04
- target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
- target: x86_64-unknown-linux-musl
os: ubuntu-20.04
- target: x86_64-apple-darwin
os: macos-13
- target: x86_64-pc-windows-msvc
os: windows-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
run: ci/install-rust.sh stable ${{ matrix.target }}
- name: Build asset
run: ci/make-release-asset.sh ${{ matrix.os }} ${{ matrix.target }}
- name: Update release with new asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload $MDBOOK_TAG $MDBOOK_ASSET
# pages:
# name: GitHub Pages
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@master
# - name: Install Rust (rustup)
# run: rustup update stable --no-self-update && rustup default stable
# - name: Build book
# run: cargo run -- build guide
# - name: Deploy to GitHub
# env:
# GITHUB_DEPLOY_KEY: ${{ secrets.GITHUB_DEPLOY_KEY }}
# run: |
# touch guide/book/.nojekyll
# curl -LsSf https://raw.githubusercontent.com/rust-lang/simpleinfra/master/setup-deploy-keys/src/deploy.rs | rustc - -o /tmp/deploy
# cd guide/book
# /tmp/deploy
# publish:
# name: Publish to crates.io
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@master
# - name: Install Rust (rustup)
# run: rustup update stable --no-self-update && rustup default stable
# - name: Publish
# env:
# CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
# run: cargo publish --no-verify