From 4e0596df414465c4c3ebd431c1f1af8169da9d47 Mon Sep 17 00:00:00 2001 From: Dmitry Degtyarev Date: Sun, 7 Jul 2024 19:43:36 +0200 Subject: [PATCH] Remove deploy to website step from workflow It fails because .pck is 150MB(>100MB limit on github) --- .github/workflows/github-actions-youtd.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/github-actions-youtd.yml b/.github/workflows/github-actions-youtd.yml index 0953abb21..625262d96 100644 --- a/.github/workflows/github-actions-youtd.yml +++ b/.github/workflows/github-actions-youtd.yml @@ -120,20 +120,6 @@ jobs: path: ${{ steps.export.outputs.archive_directory }}/*.zip if-no-files-found: error - - name: deploy to github pages - if: steps.export.outcome == 'success' - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ${{ steps.export.outputs.build_directory }}/web - cname: youtd2.com - - - name: update youtd2-website - run: | - gh workflow run workflow-public.yml -f game_version=${{ needs.setup.outputs.version }} -R praytic/youtd2-website - env: - GH_TOKEN: ${{ secrets.YOUTD2_PAT_TOKEN }} - outputs: tag_version: ${{ needs.setup.outputs.tag_version }} commit_ref: ${{ needs.setup.outputs.commit_ref }}