Skip to content

Commit

Permalink
updated deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBrown88 committed Jul 22, 2024
1 parent 6f43ce2 commit 57e9dcd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
- 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/
# 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: ./output # Adjust this to your output directory
publish_dir: ./temp_output # Adjust this to your output directory

0 comments on commit 57e9dcd

Please sign in to comment.