From 695774569c64e273c0dbc37f4cbde895913be585 Mon Sep 17 00:00:00 2001 From: Nick Liu Date: Sat, 21 Mar 2020 19:43:43 -0500 Subject: [PATCH] Add old e107 releases to workflow build-release.yml --- .github/workflows/build-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 2d367b106..a0d6bb1cf 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -25,6 +25,12 @@ jobs: - name: Fetch version information run: git fetch origin +refs/tags/*:refs/tags/* +refs/heads/*:refs/remotes/origin/* + # Remove this step if the old version tags make it to the official repository. + - name: Fetch version information from really old releases + run: | + git remote add deltik https://github.com/Deltik/e107.git + git fetch deltik +refs/tags/*:refs/tags/* +refs/heads/*:refs/remotes/origin/* + - name: Run build script run: php -dphar.readonly=0 e107_make.php working-directory: ./.github/workflows/build-release/