Merge pull request #2 from bushwickayudamutua/add/random-bam-request-url #13
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: publish to gh-pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
name: Generate & Deploy | |
steps: | |
# Checkout your repo locally | |
- uses: actions/checkout@v2 | |
# Deploy in Github Pages (you can use others) | |
- name: deploy to gh-pages | |
uses: JamesIves/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: . |