chore: attempt to fix failing update action

This commit is contained in:
Erica Marigold 2023-09-01 13:18:50 +05:30 committed by GitHub
parent 96e4377ab2
commit 7fc44df362
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,8 +15,6 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
fetch-tags: true
- name: Update submodule
run: git submodule update --recursive --remote
@ -26,7 +24,7 @@ jobs:
working-directory: "lune-src"
- name: Update lune.VERSION
run: git describe --tags --abbrev=0 > ../lune.VERSION
run: git fetch --tags && git describe --tags --abbrev=0 > ../lune.VERSION
working-directory: "lune-src"
- name: Push changes