From 59018ee523700680cc76bc340c27b77feff0818f Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 17:54:55 -0600 Subject: [PATCH 01/24] Remove deepsource --- .deepsource.toml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .deepsource.toml diff --git a/.deepsource.toml b/.deepsource.toml deleted file mode 100644 index ab83cca9..00000000 --- a/.deepsource.toml +++ /dev/null @@ -1,14 +0,0 @@ -version = 1 -exclude_patterns = [ - "dist", - "bundle.js", - "build.js" -] - -[[analyzers]] -name = "javascript" -enabled = true - -[[analyzers]] -name = "shell" -enabled = true \ No newline at end of file From 95222dc3bb7f8c1c91f645e217e807c78330c380 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 17:55:03 -0600 Subject: [PATCH 02/24] Update beta build --- .github/workflows/{test-build.yml => beta-build.yml} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) rename .github/workflows/{test-build.yml => beta-build.yml} (90%) diff --git a/.github/workflows/test-build.yml b/.github/workflows/beta-build.yml similarity index 90% rename from .github/workflows/test-build.yml rename to .github/workflows/beta-build.yml index f3aec2e3..437382e0 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/beta-build.yml @@ -1,10 +1,13 @@ -name: Test Build +name: Beta Build on: pull_request: + types: + - labeled jobs: build: + if: contains(github.event.pull_request.labels.*.name, 'beta') name: Build runs-on: ubuntu-latest permissions: @@ -57,7 +60,6 @@ jobs: git config user.email "wolfemikl@gmail.com" git remote set-url --add --push origin https://github.com/chiefmikey/gitlang-beta.git git add docs - git commit -am 'Update test build' + git commit -am 'Update beta build' git push -fu origin HEAD:main - echo "Pushed to https://github.com/chiefmikey/gitlang-beta" echo "https://beta.gitlang.net" From 3364ccd2cbf84010a24b85c531ed89160ff9f3a6 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 17:55:09 -0600 Subject: [PATCH 03/24] Update prod build --- .github/workflows/{client-build.yml => prod-build.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{client-build.yml => prod-build.yml} (98%) diff --git a/.github/workflows/client-build.yml b/.github/workflows/prod-build.yml similarity index 98% rename from .github/workflows/client-build.yml rename to .github/workflows/prod-build.yml index e69c3c50..73a5d4cc 100644 --- a/.github/workflows/client-build.yml +++ b/.github/workflows/prod-build.yml @@ -1,4 +1,4 @@ -name: Client Build +name: Production Build on: push: From cbd8776a6e0820ac8d5fe0b807d15592f5dd9457 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 20:32:07 -0600 Subject: [PATCH 04/24] Update beta build to push to branch --- .github/workflows/beta-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 437382e0..65023a2a 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -61,5 +61,5 @@ jobs: git remote set-url --add --push origin https://github.com/chiefmikey/gitlang-beta.git git add docs git commit -am 'Update beta build' - git push -fu origin HEAD:main + git push -u origin HEAD:${GITHUB_REF##*/} echo "https://beta.gitlang.net" From b34faa3618cca4cf52567ac3cf6d559765a357e9 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 20:40:31 -0600 Subject: [PATCH 05/24] Add echo test --- .github/workflows/beta-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 65023a2a..1b8d7caf 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -61,5 +61,6 @@ jobs: git remote set-url --add --push origin https://github.com/chiefmikey/gitlang-beta.git git add docs git commit -am 'Update beta build' + echo test ${GITHUB_REF##*/} git push -u origin HEAD:${GITHUB_REF##*/} echo "https://beta.gitlang.net" From d388b40429d7b347d578817efb19e34e26c4d84f Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 20:59:26 -0600 Subject: [PATCH 06/24] Update beta build pull condition --- .github/workflows/beta-build.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 1b8d7caf..82880381 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -2,8 +2,6 @@ name: Beta Build on: pull_request: - types: - - labeled jobs: build: From d7c9298ebbe5a3c3a0e8b2c1bcf1c78409c807a7 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 21:29:51 -0600 Subject: [PATCH 07/24] Update prune for beta --- .github/workflows/beta-build.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 82880381..20a9083f 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -44,13 +44,10 @@ jobs: } export -f prune find . -maxdepth 1 | while read file; do prune ${file}; done - rm docs/index.html docs/404.html - mv docs/beta/index.html docs/index.html - mv docs/beta/404.html docs/404.html - - - name: Update CNAME - run : | - echo "beta.gitlang.net" > ./docs/CNAME + rm docs/index.html docs/404.html docs/CNAME + mv beta/index.html beta/404.html beta/CNAME docs/ + mkdir .github .github/workflows + mv beta/beta-compile.yml .github/workflows/beta-compile.yml - name: Push to Beta run: | From 1f1984752b05f092b0ab0a88f70b08f34695e36c Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 21:30:17 -0600 Subject: [PATCH 08/24] Include beta files --- {docs/beta => beta}/404.html | 0 beta/CNAME | 1 + beta/beta-compile.yml | 34 ++++++++++++++++++++++++++++++++++ {docs/beta => beta}/index.html | 0 4 files changed, 35 insertions(+) rename {docs/beta => beta}/404.html (100%) create mode 100644 beta/CNAME create mode 100644 beta/beta-compile.yml rename {docs/beta => beta}/index.html (100%) diff --git a/docs/beta/404.html b/beta/404.html similarity index 100% rename from docs/beta/404.html rename to beta/404.html diff --git a/beta/CNAME b/beta/CNAME new file mode 100644 index 00000000..48bd5b3e --- /dev/null +++ b/beta/CNAME @@ -0,0 +1 @@ +beta.gitlang.net diff --git a/beta/beta-compile.yml b/beta/beta-compile.yml new file mode 100644 index 00000000..3d66c9e9 --- /dev/null +++ b/beta/beta-compile.yml @@ -0,0 +1,34 @@ +name: Beta Compile + +on: + pull_request: + +jobs: + build: + name: Compile + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: '16.x' + + - name: Checkout + uses: actions/checkout@v3 + with: + token: ${{ secrets.DISPATCH_REPO }} + fetch-depth: 0 + + - name: Merge branches + run: | + echo $(gh pr list -s open --json) + for pull_request in $(gh pr list -s open --json); do + echo "Compiling ${pull_request}" + git + done + + done + git pull diff --git a/docs/beta/index.html b/beta/index.html similarity index 100% rename from docs/beta/index.html rename to beta/index.html From 195f066fb0914c05bd6a41028167ba8f7e441da6 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 21:36:52 -0600 Subject: [PATCH 09/24] Update beta compile --- beta/beta-compile.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/beta/beta-compile.yml b/beta/beta-compile.yml index 3d66c9e9..fe9fa349 100644 --- a/beta/beta-compile.yml +++ b/beta/beta-compile.yml @@ -24,11 +24,17 @@ jobs: - name: Merge branches run: | + git checkout -b beta-compile echo $(gh pr list -s open --json) - for pull_request in $(gh pr list -s open --json); do - echo "Compiling ${pull_request}" - git + for pull_request in $(gh pr list -s open --json branch); do + echo "Merge ${pull_request}" + git merge origin/${pull_request} done - done - git pull + - name: Push to Main + run: | + git config user.name "Mikl Wolfe" + git config user.email "wolfemikl@gmail.com" + git add . + git commit -am 'Beta compile' + git push -u origin HEAD:main From 996d81e4f9824ddeca1fae01be0d7f929b224164 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 21:38:08 -0600 Subject: [PATCH 10/24] Update beta prune to leave beta dir --- .github/workflows/beta-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 20a9083f..4550a2f4 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -37,6 +37,7 @@ jobs: [ "${1}" != ".." ] && [ "${1}" != "./.git" ] && [ "${1}" != "./docs" ] && + [ "${1}" != "./beta" ] && [ "${1}" != "./LICENSE" ] && [ "${1}" != "./README.md" ]; then rm -rf ${1}; From 094450d2266fc2e41bb6709794bb13b8f5193fe6 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 21:42:09 -0600 Subject: [PATCH 11/24] Update echo test --- .github/workflows/beta-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 4550a2f4..c4d179ba 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -57,6 +57,6 @@ jobs: git remote set-url --add --push origin https://github.com/chiefmikey/gitlang-beta.git git add docs git commit -am 'Update beta build' - echo test ${GITHUB_REF##*/} + echo test ${GITHUB_REF} git push -u origin HEAD:${GITHUB_REF##*/} echo "https://beta.gitlang.net" From eb6faf037aca0ca459e2a4966e864f67914232b7 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 21:49:40 -0600 Subject: [PATCH 12/24] Update beta build fetch depth --- .github/workflows/beta-build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index c4d179ba..107ee0f7 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -21,7 +21,6 @@ jobs: uses: actions/checkout@v3 with: token: ${{ secrets.DISPATCH_REPO }} - fetch-depth: 0 - name: Webpack run: | @@ -56,7 +55,7 @@ jobs: git config user.email "wolfemikl@gmail.com" git remote set-url --add --push origin https://github.com/chiefmikey/gitlang-beta.git git add docs - git commit -am 'Update beta build' + git commit -am 'Update beta branch' echo test ${GITHUB_REF} git push -u origin HEAD:${GITHUB_REF##*/} echo "https://beta.gitlang.net" From ef0887f7bce6d7b21ab91f0ee8d085750c10e67a Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 21:53:12 -0600 Subject: [PATCH 13/24] Update beta build to head_ref --- .github/workflows/beta-build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 107ee0f7..00ce7d32 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -56,6 +56,7 @@ jobs: git remote set-url --add --push origin https://github.com/chiefmikey/gitlang-beta.git git add docs git commit -am 'Update beta branch' - echo test ${GITHUB_REF} - git push -u origin HEAD:${GITHUB_REF##*/} + BRANCH=${{ github.head_ref }} + echo test ${BRANCH} + git push -u origin HEAD:${BRANCH} echo "https://beta.gitlang.net" From 4516dcf3af1d035f4892ed1765c70ff56575b7f5 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 21:56:09 -0600 Subject: [PATCH 14/24] Update beta build to refs/heads/branch --- .github/workflows/beta-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 00ce7d32..bc9897ad 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -58,5 +58,5 @@ jobs: git commit -am 'Update beta branch' BRANCH=${{ github.head_ref }} echo test ${BRANCH} - git push -u origin HEAD:${BRANCH} + git push -u origin HEAD:refs/heads/${BRANCH} echo "https://beta.gitlang.net" From 6c11b2f7ad36befded93ea9f88a9a655059090d2 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 21:58:41 -0600 Subject: [PATCH 15/24] Update beta build fetch depth --- .github/workflows/beta-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index bc9897ad..749a29b4 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -21,6 +21,7 @@ jobs: uses: actions/checkout@v3 with: token: ${{ secrets.DISPATCH_REPO }} + fetch-depth: 0 - name: Webpack run: | From b2bf06c1e01214d580ee05f2a2501dda27fd825f Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 22:02:00 -0600 Subject: [PATCH 16/24] Remove beta build test --- .github/workflows/beta-build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 749a29b4..de78d7f4 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -57,7 +57,5 @@ jobs: git remote set-url --add --push origin https://github.com/chiefmikey/gitlang-beta.git git add docs git commit -am 'Update beta branch' - BRANCH=${{ github.head_ref }} - echo test ${BRANCH} - git push -u origin HEAD:refs/heads/${BRANCH} + git push -u origin HEAD:refs/heads/${{ github.head_ref }} echo "https://beta.gitlang.net" From a660dd70769a1865b28f414bdad6980e288deac4 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 22:21:50 -0600 Subject: [PATCH 17/24] Init beta branch --- .github/workflows/beta-build.yml | 2 +- beta/beta-branch.yml | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 beta/beta-branch.yml diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index de78d7f4..adea3e4b 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -48,7 +48,7 @@ jobs: rm docs/index.html docs/404.html docs/CNAME mv beta/index.html beta/404.html beta/CNAME docs/ mkdir .github .github/workflows - mv beta/beta-compile.yml .github/workflows/beta-compile.yml + mv beta/beta-compile.yml beta/beta-branch.yml .github/workflows/ - name: Push to Beta run: | diff --git a/beta/beta-branch.yml b/beta/beta-branch.yml new file mode 100644 index 00000000..1bf5f44c --- /dev/null +++ b/beta/beta-branch.yml @@ -0,0 +1,28 @@ +name: Beta Branch + +on: + create + +jobs: + build: + name: Branch + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: '16.x' + + - name: Checkout + uses: actions/checkout@v3 + with: + token: ${{ secrets.DISPATCH_REPO }} + fetch-depth: 0 + + - name: Open PR + run: | + echo test: ${{ github.head_ref }} + gh pr create From e74871940c2ecdabbd901eb3ba60d684f0fdee8f Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 22:28:41 -0600 Subject: [PATCH 18/24] Reset commits in beta build --- .github/workflows/beta-build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index adea3e4b..bd24213a 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -35,7 +35,6 @@ jobs: if [ "${1}" != "." ] && [ "${1}" != ".." ] && - [ "${1}" != "./.git" ] && [ "${1}" != "./docs" ] && [ "${1}" != "./beta" ] && [ "${1}" != "./LICENSE" ] && @@ -52,10 +51,12 @@ jobs: - name: Push to Beta run: | + git init git config user.name "Mikl Wolfe" git config user.email "wolfemikl@gmail.com" - git remote set-url --add --push origin https://github.com/chiefmikey/gitlang-beta.git + git remote add origin https://github.com/chiefmikey/gitlang-beta.git git add docs + git checkout -b beta-build git commit -am 'Update beta branch' git push -u origin HEAD:refs/heads/${{ github.head_ref }} echo "https://beta.gitlang.net" From 7d0f92621253ab1476447ea6edc2e10c6ad70c88 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 22:30:32 -0600 Subject: [PATCH 19/24] Update beta branch fetch depth --- beta/beta-branch.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/beta/beta-branch.yml b/beta/beta-branch.yml index 1bf5f44c..22733409 100644 --- a/beta/beta-branch.yml +++ b/beta/beta-branch.yml @@ -20,7 +20,6 @@ jobs: uses: actions/checkout@v3 with: token: ${{ secrets.DISPATCH_REPO }} - fetch-depth: 0 - name: Open PR run: | From c85754b6ce2e807415178de0042ccc23cce51be8 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 22:31:30 -0600 Subject: [PATCH 20/24] Add force push to beta build --- .github/workflows/beta-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index bd24213a..523f55c6 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -58,5 +58,5 @@ jobs: git add docs git checkout -b beta-build git commit -am 'Update beta branch' - git push -u origin HEAD:refs/heads/${{ github.head_ref }} + git push -fu origin HEAD:refs/heads/${{ github.head_ref }} echo "https://beta.gitlang.net" From 11894e1a804d2e274461a8a4f8cfbf67f75c417d Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 22:36:31 -0600 Subject: [PATCH 21/24] Add git reset to beta build --- .github/workflows/beta-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 523f55c6..eed5f2d6 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -57,6 +57,7 @@ jobs: git remote add origin https://github.com/chiefmikey/gitlang-beta.git git add docs git checkout -b beta-build - git commit -am 'Update beta branch' + git commit -am 'Build beta branch' + git reset $(git commit-tree HEAD^{tree} -m "Update beta branch") git push -fu origin HEAD:refs/heads/${{ github.head_ref }} echo "https://beta.gitlang.net" From 12c17dda972b4e7e9613a162a595fdb460d459ae Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 22:39:19 -0600 Subject: [PATCH 22/24] Update beta build squash --- .github/workflows/beta-build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index eed5f2d6..5b4d1d9b 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -35,6 +35,7 @@ jobs: if [ "${1}" != "." ] && [ "${1}" != ".." ] && + [ "${1}" != "./.git" ] && [ "${1}" != "./docs" ] && [ "${1}" != "./beta" ] && [ "${1}" != "./LICENSE" ] && @@ -51,13 +52,11 @@ jobs: - name: Push to Beta run: | - git init git config user.name "Mikl Wolfe" git config user.email "wolfemikl@gmail.com" git remote add origin https://github.com/chiefmikey/gitlang-beta.git - git add docs - git checkout -b beta-build + git add . git commit -am 'Build beta branch' - git reset $(git commit-tree HEAD^{tree} -m "Update beta branch") + git reset $(git commit-tree HEAD^{tree} -m 'Update beta branch') git push -fu origin HEAD:refs/heads/${{ github.head_ref }} echo "https://beta.gitlang.net" From 87207740b438f1c147bfeecab99323c146587614 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 22:41:52 -0600 Subject: [PATCH 23/24] Fix remote add to set-url --- .github/workflows/beta-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 5b4d1d9b..6c15702f 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -54,7 +54,7 @@ jobs: run: | git config user.name "Mikl Wolfe" git config user.email "wolfemikl@gmail.com" - git remote add origin https://github.com/chiefmikey/gitlang-beta.git + git remote set-url --add --push origin https://github.com/chiefmikey/gitlang-beta.git git add . git commit -am 'Build beta branch' git reset $(git commit-tree HEAD^{tree} -m 'Update beta branch') From c41f4dc8145e069892dee056caf338e208739632 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 22:50:16 -0600 Subject: [PATCH 24/24] Remove beta build fetch depth test --- .github/workflows/beta-build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/beta-build.yml b/.github/workflows/beta-build.yml index 6c15702f..2976ff0b 100644 --- a/.github/workflows/beta-build.yml +++ b/.github/workflows/beta-build.yml @@ -21,7 +21,6 @@ jobs: uses: actions/checkout@v3 with: token: ${{ secrets.DISPATCH_REPO }} - fetch-depth: 0 - name: Webpack run: |