Merge pull request #47 from Taxiway/comparison_refine #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to Pages | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
repository-name: pizzamx/pizzamx.github.io | |
token: ${{ secrets.PAT_FOR_ACTIONS }} | |
branch: master #the branch you wish to deploy to, for example, gh-pages or docs. Defaults to gh-pages. | |
folder: . #The folder in your repository that you want to deploy. | |
target-folder: jpgramma #If you'd like to push the contents of the deployment folder into a specific directory on the deployment branch you can specify it here. |