diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 84a52ba..491c6c7 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -19,7 +19,7 @@ env: jobs: # ========== НОВАЯ ЗАДАЧА: просто проверяет, что код есть ========== setup: - runs-on: ubuntu-latest + runs-on: docker steps: - name: Checkout code uses: actions/checkout@v4 @@ -28,7 +28,7 @@ jobs: test: needs: setup # ← теперь зависит от setup - runs-on: ubuntu-latest + runs-on: docker steps: - name: Checkout code uses: actions/checkout@v4 @@ -54,7 +54,7 @@ jobs: build-and-push: needs: test # ← зависит от test - runs-on: ubuntu-latest + runs-on: docker if: github.event_name == 'push' steps: @@ -94,7 +94,7 @@ jobs: deploy: needs: build-and-push # ← зависит от build-and-push - runs-on: ubuntu-latest + runs-on: docker if: github.event_name == 'push' && github.ref == 'refs/heads/master' steps: