From cd40ee53c2c11113a2c824778e5fc44d7d50c6cd Mon Sep 17 00:00:00 2001 From: Samuel Guay Date: Mon, 17 Jul 2023 13:51:15 -0400 Subject: [PATCH] fix alias update + specific stable tags --- .github/workflows/publish_doc.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish_doc.yaml b/.github/workflows/publish_doc.yaml index db629b82..d244c07f 100644 --- a/.github/workflows/publish_doc.yaml +++ b/.github/workflows/publish_doc.yaml @@ -7,7 +7,7 @@ on: branches: - master tags: - - '**' + - '[0-9]+.[0-9]+.[0-9]+' # Allow this workflow manually from the Actions tab workflow_dispatch: @@ -57,10 +57,10 @@ jobs: - name: Build docs for specific release if: github.event_name == 'release' run: | - mike deploy -p ${{ github.ref_name }} latest + mike deploy -p ${{ github.ref_name }} latest -u - name: Deploy dev version if: ${{ github.ref == 'refs/heads/master' }} run: | VERSION=$(dcm2bids -v | awk '/dcm2bids/ {print $3}') - mike deploy -p $VERSION dev + mike deploy -p $VERSION dev -u