From 17528f414b012c68efdc87f2d4ef19dfd7715257 Mon Sep 17 00:00:00 2001 From: mattbrown88 Date: Mon, 22 Jul 2024 08:57:01 -0600 Subject: [PATCH] asdf --- .github/workflows/deploy.yaml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index b1ee731..b64f681 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -8,23 +8,3 @@ on: permissions: id-token: write contents: read - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Build and Deploy - run: | - # Add your build steps here if any (e.g., npm install && npm run build) - # For static sites without build steps, copy files to a temporary directory - mkdir -p temp_output - cp -r $(ls -A | grep -v '^temp_output$') temp_output/ - - - name: Deploy to GitHub Pages - uses: actions/deploy-pages@v4 - with: - token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./temp_output # Adjust this to your output directory