Commit 07f3535 1 parent 00d9b9c commit 07f3535 Copy full SHA for 07f3535
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
- main # Only run the publish workflow for pushes to main
11
11
12
12
jobs :
13
- publish-lib :
13
+ publish-lib-prerelease :
14
14
environment : Github CI
15
15
# Only proceed if the tests passed and we're not on release
16
- if : ${{ github.event.workflow_run.conclusion == 'success' }} && startsWith(github.head_ref , 'refs/tags/') == false
16
+ if : ${{ github.event.workflow_run.conclusion == 'success' }} && ${{ ! startsWith(github.ref , 'refs/tags/') }}
17
17
runs-on : ubuntu-latest
18
18
permissions :
19
19
contents : read
Original file line number Diff line number Diff line change 1
- name : Prerelease litlytics library
1
+ name : Release litlytics library
2
2
3
3
on :
4
4
workflow_run :
13
13
publish-lib :
14
14
environment : Github CI
15
15
# Only proceed if the tests passed and we're on release
16
- if : ${{ github.event.workflow_run.conclusion == 'success' }} && startsWith(github.head_ref , 'refs/tags/') == true
16
+ if : ${{ github.event.workflow_run.conclusion == 'success' }} && ${{ startsWith(github.ref , 'refs/tags/') }}
17
17
runs-on : ubuntu-latest
18
18
permissions :
19
19
contents : read
You can’t perform that action at this time.
0 commit comments