From 2632189e51fea72c185a31639ed61d210307a43c Mon Sep 17 00:00:00 2001 From: h9b Date: Tue, 14 May 2024 17:23:05 +0200 Subject: [PATCH] remove old deployment yaml file --- .github/workflows/deploy-production.yml | 35 ------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/deploy-production.yml diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml deleted file mode 100644 index a27e495..0000000 --- a/.github/workflows/deploy-production.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Build and Deploy -on: - push: - branches: - - gh-pages -permissions: - contents: write -jobs: - build-and-deploy: - concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. - runs-on: ubuntu-latest - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v4 - with: - submodules: 'true' - - - name: npm install - run: npm install - - name: Validate the source files 🔬 - run: npm run validate - - name: Generate thumbnail images 🖨️ - run: npm run thumbnails - - - name: Install and Build 🔧 - uses: ruby/setup-ruby@v1 - with: - bundler-cache: true # runs 'bundle install' and caches installed gems automatically - - run: bundle exec jekyll build --config _config.yml,_config_production.yml - - - name: Deploy 🚀 - uses: nicolelaine/github-pages-deploy-action@v4 - with: - folder: _site # The folder the action should deploy. - branch: gh-pages \ No newline at end of file