Skip to content

Commit

Permalink
Add workflow to publish version with Arabic search
Browse files Browse the repository at this point in the history
  • Loading branch information
abdnh committed Aug 9, 2023
1 parent 2caf9ae commit 03a0b8a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/arabic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Create release with Arabic search support

on:
create:
tags:
- "arabic-search-*"

permissions:
contents: write
jobs:
create-release:
name: Create Release
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install Rust
run: bash ci/install-rust.sh stable
- name: Build
run: cargo build --release --features arabic-search
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: target/release/mdbook

0 comments on commit 03a0b8a

Please sign in to comment.