Skip to content

Commit 25608dd

Browse files
committed
ci: Fix libosdp publisher
Signed-off-by: Siddharth Chandrasekaran <sidcha.dev@gmail.com>
1 parent ebcec7b commit 25608dd

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/publish-libosdp.yml

+15-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
jobs:
1818
cross_platform_check:
19-
name: Build libosdp-sys on ${{ matrix.os }}
19+
name: Build libosdp on ${{ matrix.os }}
2020
runs-on: ${{ matrix.os }}
2121
strategy:
2222
matrix:
@@ -33,8 +33,8 @@ jobs:
3333
- run: cargo build -p libosdp-sys
3434

3535
publish:
36+
name: Publish Crate
3637
needs: [cross_platform_check]
37-
name: Publish libosdp-sys
3838
runs-on: ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@v3
@@ -44,7 +44,18 @@ jobs:
4444
with:
4545
toolchain: stable
4646
override: true
47-
- run: cargo publish --token ${CRATES_TOKEN} -p libosdp-sys
47+
- name: "Setup environment - trigger"
48+
if: github.ref == 'refs/heads/master'
49+
run: echo "TAG=${TRIGGER_TAG}" >> "${GITHUB_ENV}"
50+
env:
51+
TRIGGER_TAG: ${{ github.event.inputs.tag }}
52+
- name: "Setup environment - tag"
53+
if: github.ref != 'refs/heads/master'
54+
run: echo "TAG=${REL_TAG}" >> "${GITHUB_ENV}"
4855
env:
49-
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
5056
REL_TAG: ${{ github.ref_name }}
57+
- name: "Publish crate"
58+
run: |
59+
cargo publish --token ${CRATES_TOKEN} -p $(echo ${TAG} | perl -pe 's/([a-z\-]+)-v.*/\1/')
60+
env:
61+
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)