mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
4d39025e82
tested e2e and it's working
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: Publish Rust SDK
|
|
|
|
on: []
|
|
|
|
env:
|
|
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
|
|
|
|
jobs:
|
|
build-and-publish:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
default: true
|
|
profile: minimal
|
|
|
|
- name: Install dependencies
|
|
run: cargo build --release
|
|
|
|
- name: Run version check script
|
|
id: version_check_script
|
|
run: |
|
|
VERSION_INCREMENTED=$(cargo search --limit 1 my_crate_name | grep my_crate_name)
|
|
echo "VERSION_INCREMENTED=$VERSION_INCREMENTED" >> $GITHUB_ENV
|
|
|
|
- name: Build the package
|
|
if: ${{ env.VERSION_INCREMENTED == 'true' }}
|
|
run: cargo package
|
|
working-directory: ./apps/rust-sdk
|
|
|
|
- name: Publish to crates.io
|
|
if: ${{ env.VERSION_INCREMENTED == 'true' }}
|
|
env:
|
|
CARGO_REG_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
|
|
run: cargo publish
|
|
working-directory: ./apps/rust-sdk |