GitHub_Pages_Deploy.yml 352 B

12345678910111213
  1. name: Deploy to GitHub Pages
  2. on: [push]
  3. jobs:
  4. Deploy:
  5. name: Deploy to GitHub Pages
  6. runs-on: ubuntu-latest
  7. if: success() && github.event == 'push' && github.ref == 'master'
  8. steps:
  9. - name: publish
  10. uses: maxheld83/ghpages@v0.2.1
  11. env:
  12. BUILD_DIR: 'dist/'
  13. GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}