From 5a12def591931d6edfceae7179181e779e2f255e Mon Sep 17 00:00:00 2001 From: Matthew Hatcher <3768988+MatthewSH@users.noreply.github.com> Date: Thu, 21 Dec 2023 10:01:31 -0600 Subject: [PATCH] fix: remove release-script for now (#3333) It's not completely needed and may only cause issues. --- .../workflows/docker-app-rest-passthrough.yml | 36 ++++++++++--------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/.github/workflows/docker-app-rest-passthrough.yml b/.github/workflows/docker-app-rest-passthrough.yml index 7914aa6ea..2acb5819e 100644 --- a/.github/workflows/docker-app-rest-passthrough.yml +++ b/.github/workflows/docker-app-rest-passthrough.yml @@ -13,21 +13,24 @@ on: - cron: '0 0 * * *' jobs: - run-release: - name: Run release script - runs-on: ubuntu-latest - if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Git config - run: | - git config user.name github-actions - git config user.email github-actions@github.com - - name: Run release script - run: | - yarn release - git push && git push --tags + # Removing this for now until I can confirm a couple things and ensure it works fully + # - Matt H + # run-release: + # name: Run release script + # runs-on: ubuntu-latest + # if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} + # steps: + # - name: Checkout repository + # uses: actions/checkout@v4 + # - name: Git config + # run: | + # git config user.name github-actions + # git config user.email github-actions@github.com + # - name: Run release script + # run: | + # yarn install --immutable + # yarn release + # git push && git push --tags app-version: name: Get app version @@ -178,7 +181,8 @@ jobs: publish: name: Publish image - needs: [run-release, build-all-arch, app-version] + # needs: [run-release, build-all-arch, app-version] + needs: [build-all-arch, app-version] if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} runs-on: ubuntu-latest permissions: