From 6f43ce23f920165ec4e2fe2f0374a9a17a852c95 Mon Sep 17 00:00:00 2001 From: mattbrown88 Date: Mon, 22 Jul 2024 08:41:38 -0600 Subject: [PATCH] deploy file --- .github/workflows/deploy.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/deploy.yaml diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..b43b66b --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,30 @@ +name: Deploy GitHub Pages + +on: + push: + branches: + - main # or the branch you are using for deployment + +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, simply copy files to the output directory + mkdir -p output + cp -r * output/ + + - name: Deploy to GitHub Pages + uses: actions/deploy-pages@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./output # Adjust this to your output directory