name: Deploy site on: push: branches: [ main ] workflow_dispatch: jobs: doc-deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: persist-credentials: false submodules: recursive fetch-depth: 0 - name: Install apindex-v2 run: | sudo apt-get update sudo apt-get install curl git -y curl https://raw.githubusercontent.com/jayanta525/apindex/master/install.sh | sudo bash - name: Build site run: | cp README.md files/README.md apindex files mkdir public cp -r files/* public cp CNAME public touch public/.nojekyll - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@3.7.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages # The branch the action should deploy to. FOLDER: public # The folder the action should deploy. CLEAN: true # Automatically remove deleted files from the deploy branchimage: ubuntu:bionic