File tree 1 file changed +7
-12
lines changed
1 file changed +7
-12
lines changed Original file line number Diff line number Diff line change 8
8
- master
9
9
tags :
10
10
- ' [0-9]+.[0-9]+.[0-9]+'
11
-
11
+ release :
12
+ types : [published]
12
13
# Allow this workflow manually from the Actions tab
13
14
workflow_dispatch :
14
15
@@ -59,23 +60,17 @@ jobs:
59
60
- name : Build API reference
60
61
run : pdocs as_markdown -o docs/ dcm2bids --overwrite
61
62
62
- - name : Build docs for new release
63
- if : github.event_name == 'published'
63
+ - name : Build docs for releases already deployed
64
+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
64
65
run : |
65
66
VERSION=$(dcm2bids -v | awk '/dcm2bids/ {print $3}')
66
- mike deploy -p $VERSION latest -u
67
+ mike deploy -p $VERSION
67
68
68
69
- name : Build docs for new release
69
- if : github.event_name == 'published' && startsWith(github.ref, 'refs/tags/')
70
+ if : github.event_name == 'published'
70
71
run : |
71
72
VERSION=$(dcm2bids -v | awk '/dcm2bids/ {print $3}')
72
- mike deploy -p $VERSION latest -u
73
-
74
- # - name: Build docs for specific release (already deployed)
75
- # if: github.event_name != 'release' && github.ref_name
76
- # run: |
77
- # VERSION=$(dcm2bids -v | awk '/dcm2bids/ {print $3}')
78
- # mike deploy -p $VERSION
73
+ mike deploy -p ${{ github.event.ref }} latest -u
79
74
80
75
- name : Deploy dev version
81
76
if : ${{ github.ref == 'refs/heads/master' }}
You can’t perform that action at this time.
0 commit comments