From 18e45644d54c8ae0c7311c7e46fe85bd4469c98f Mon Sep 17 00:00:00 2001 From: vigdorov Date: Sun, 8 Feb 2026 12:40:51 +0300 Subject: [PATCH] clear trash files --- .github/workflows/deploy.yml | 37 ------------------------------------ docker-compose.prod.yml | 6 ------ docker-compose.staging.yml | 6 ------ 3 files changed, 49 deletions(-) delete mode 100644 .github/workflows/deploy.yml delete mode 100644 docker-compose.prod.yml delete mode 100644 docker-compose.staging.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index d540c7a..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,37 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Deploy to pages - -# Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [ master ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. - run: | - npm i - npm run build - - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@3.7.1 - with: - ACCESS_TOKEN: ${{ secrets.GIT_TOKEN_V1 }} - BRANCH: gh-pages # The branch the action should deploy to. - FOLDER: build # The folder the action should deploy. - CLEAN: true # Automatically remove deleted files from the deploy branch diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml deleted file mode 100644 index 50e8a63..0000000 --- a/docker-compose.prod.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: '3.8' -services: - frontend: - image: examples-for-kids:${BUILD_NUMBER:-latest} - ports: - - "3000:80" \ No newline at end of file diff --git a/docker-compose.staging.yml b/docker-compose.staging.yml deleted file mode 100644 index d60d322..0000000 --- a/docker-compose.staging.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: '3.8' -services: - frontend: - image: examples-for-kids:${BUILD_NUMBER:-latest} - ports: - - "3001:80" \ No newline at end of file