From 45ff593858f14a59bce654d7d6eaaa2e3f453527 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Fri, 1 Sep 2023 13:20:06 +0530 Subject: [PATCH] revert 'chore: attempt fix failing update action' --- .github/workflows/update.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml index ae93b09..3c6ef43 100644 --- a/.github/workflows/update.yaml +++ b/.github/workflows/update.yaml @@ -15,6 +15,8 @@ jobs: uses: actions/checkout@v3 with: submodules: true + fetch-depth: 0 + fetch-tags: true - name: Update submodule run: git submodule update --recursive --remote @@ -24,7 +26,7 @@ jobs: working-directory: "lune-src" - name: Update lune.VERSION - run: git fetch --tags && git describe --tags --abbrev=0 > ../lune.VERSION + run: git describe --tags --abbrev=0 > ../lune.VERSION working-directory: "lune-src" - name: Push changes