diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b7e9264..c35fb89 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,13 +11,11 @@ jobs: - name: Checkout Code uses: actions/checkout@v4 - - name: Download and Install Ren'Py SDK - env: - RENPY_VERSION: "8.2.1" # Ensure this matches the version you built the game with - run: | - wget https://www.renpy.org/dl/${RENPY_VERSION}/renpy-${RENPY_VERSION}-sdk.tar.bz2 - tar -xjf renpy-${RENPY_VERSION}-sdk.tar.bz2 -C /tmp - mv /tmp/renpy-${RENPY_VERSION}-sdk /tmp/renpy-sdk + - name: Setup Ren'Py with Web Support + uses: remarkablegames/setup-renpy@v1 + with: + version: '8.5.3' + web: true - name: Install System Dependencies (OpenGL) run: |