From 3488531cbe54f84114364d602bcdd12e63102317 Mon Sep 17 00:00:00 2001 From: Vojtech Micka Date: Tue, 5 Nov 2024 20:34:56 +0100 Subject: [PATCH] =?UTF-8?q?Remove=20=E2=80=94-rebase=20from=20Mike?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 561bed8..74128b9 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -30,10 +30,10 @@ jobs: git config --local user.name "github-actions[bot]" git config --local user.email "github-actions[bot]@users.noreply.github.com" - - name: Deploy with mike (tag_ 🚀 + - name: Deploy with mike (tag) 🚀 if: ${{ github.ref_type == 'tag' }} - run: mike deploy --push --rebase --update-aliases ${{ github.ref_name }} latest + run: mike deploy --push --update-aliases ${{ github.ref_name }} latest - name: Deploy with mike (branch) 🚀 if: ${{ github.ref_type == 'branch' }} - run: mike deploy --push --rebase docs-latest + run: mike deploy --push docs-latest