From 37e073ea3ddef313a92cd8c0b9e507dd48baefa1 Mon Sep 17 00:00:00 2001 From: Refosel Date: Sat, 28 Mar 2026 00:28:09 +0300 Subject: [PATCH] Remove workflows (use manual Docker build) --- .github/workflows/games.yml | 38 ------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/games.yml diff --git a/.github/workflows/games.yml b/.github/workflows/games.yml deleted file mode 100644 index 88c3f44..0000000 --- a/.github/workflows/games.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: build games -on: - workflow_dispatch: - schedule: - - cron: "0 0 1 * *" - push: - branches: - - master - paths: - - games/** -jobs: - push: - name: "games:source" - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - game: - - source - steps: - - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v4 - - uses: docker/setup-buildx-action@v2 - with: - buildkitd-flags: --debug - platforms: linux/amd64,linux/arm64 - - uses: docker/build-push-action@v4 - with: - context: ./games/source - file: ./games/source/Dockerfile - platforms: linux/amd64 - push: true - tags: | - gitea.refoseltw.ru/rtw/games:source