diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..9d8d2e1 --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,16 @@ +name: Deploy to Github Pages +on: + push: + branches: [ "semenov-add-deployment-to-gh-pages-by-pushing" ] +permissions: + contents: write +jobs: + build-and-deploy: + # concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v3 + + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@v4