mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 04:09:09 +00:00
chore: attempt to fix failing update action
This commit is contained in:
parent
96e4377ab2
commit
7fc44df362
1 changed files with 1 additions and 3 deletions
4
.github/workflows/update.yaml
vendored
4
.github/workflows/update.yaml
vendored
|
@ -15,8 +15,6 @@ jobs:
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
fetch-depth: 0
|
|
||||||
fetch-tags: true
|
|
||||||
|
|
||||||
- name: Update submodule
|
- name: Update submodule
|
||||||
run: git submodule update --recursive --remote
|
run: git submodule update --recursive --remote
|
||||||
|
@ -26,7 +24,7 @@ jobs:
|
||||||
working-directory: "lune-src"
|
working-directory: "lune-src"
|
||||||
|
|
||||||
- name: Update lune.VERSION
|
- 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"
|
working-directory: "lune-src"
|
||||||
|
|
||||||
- name: Push changes
|
- name: Push changes
|
||||||
|
|
Loading…
Reference in a new issue