diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index a627c12..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build and Push - -on: - push: - branches: [master] - workflow_dispatch: - -jobs: - build: - runs-on: docker - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to Gitea Container Registry - uses: docker/login-action@v3 - with: - registry: gitea.refoseltw.ru - username: refoseldev - password: 601ccade88823188fd6e159025dc6080d5fb2052 - - - name: Build and Push - uses: docker/build-push-action@v5 - with: - context: ./games/source - push: true - no-cache: true - tags: gitea.refoseltw.ru/refoselteamwork/games:source diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml deleted file mode 100644 index e01094a..0000000 --- a/.github/workflows/push.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build and Push to Gitea - -on: - push: - branches: [master] - paths: - - 'games/**' - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to Gitea Container Registry - uses: docker/login-action@v3 - with: - registry: gitea.refoseltw.ru - username: ${{ secrets.GITEA_USERNAME }} - password: ${{ secrets.GITEA_TOKEN }} - - - name: Build and Push games:source - uses: docker/build-push-action@v5 - with: - context: ./games/source - push: true - tags: gitea.refoseltw.ru/rtw/games:source