Skip to content

Commit 9dc63fe

Browse files
committed
die trying
1 parent 945e68a commit 9dc63fe

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

.github/workflows/publish_doc.yaml

+7-12
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ on:
88
- master
99
tags:
1010
- '[0-9]+.[0-9]+.[0-9]+'
11-
11+
release:
12+
types: [published]
1213
# Allow this workflow manually from the Actions tab
1314
workflow_dispatch:
1415

@@ -59,23 +60,17 @@ jobs:
5960
- name: Build API reference
6061
run: pdocs as_markdown -o docs/ dcm2bids --overwrite
6162

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/')
6465
run: |
6566
VERSION=$(dcm2bids -v | awk '/dcm2bids/ {print $3}')
66-
mike deploy -p $VERSION latest -u
67+
mike deploy -p $VERSION
6768
6869
- name: Build docs for new release
69-
if: github.event_name == 'published' && startsWith(github.ref, 'refs/tags/')
70+
if: github.event_name == 'published'
7071
run: |
7172
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
7974
8075
- name: Deploy dev version
8176
if: ${{ github.ref == 'refs/heads/master' }}

0 commit comments

Comments
 (0)