Skip to content

Commit

Permalink
ci: Fix crate name
Browse files Browse the repository at this point in the history
Signed-off-by: Siddharth Chandrasekaran <[email protected]>
  • Loading branch information
sidcha committed Mar 9, 2024
1 parent c5dc699 commit 81000b0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish-libosdp-sys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
#

name: Publish libosdp_sys
name: Publish libosdp-sys

on:
workflow_dispatch:
Expand All @@ -15,7 +15,7 @@ on:

jobs:
cross_platform_check:
name: Build libosdp_sys on ${{ matrix.os }}
name: Build libosdp-sys on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -29,11 +29,11 @@ jobs:
with:
toolchain: stable
override: true
- run: cargo build -p libosdp_sys
- run: cargo build -p libosdp-sys

publish:
needs: [cross_platform_check]
name: Publish libosdp_sys
name: Publish libosdp-sys
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -43,7 +43,7 @@ jobs:
with:
toolchain: stable
override: true
- run: cargo publish --token ${CRATES_TOKEN} -p libosdp_sys
- run: cargo publish --token ${CRATES_TOKEN} -p libosdp-sys
env:
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
REL_TAG: ${{ github.ref_name }}

0 comments on commit 81000b0

Please sign in to comment.