File tree 1 file changed +15
-4
lines changed
1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change 16
16
17
17
jobs :
18
18
cross_platform_check :
19
- name : Build libosdp-sys on ${{ matrix.os }}
19
+ name : Build libosdp on ${{ matrix.os }}
20
20
runs-on : ${{ matrix.os }}
21
21
strategy :
22
22
matrix :
33
33
- run : cargo build -p libosdp-sys
34
34
35
35
publish :
36
+ name : Publish Crate
36
37
needs : [cross_platform_check]
37
- name : Publish libosdp-sys
38
38
runs-on : ubuntu-latest
39
39
steps :
40
40
- uses : actions/checkout@v3
44
44
with :
45
45
toolchain : stable
46
46
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}"
48
55
env :
49
- CRATES_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
50
56
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 }}
You can’t perform that action at this time.
0 commit comments