From b8e2b79b22612061ed9d57d41b0a23c033a16557 Mon Sep 17 00:00:00 2001 From: Evgeny Semenov Date: Thu, 25 Jan 2024 13:39:54 +0000 Subject: [PATCH] Create gh-pages.yml --- .github/workflows/gh-pages.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/gh-pages.yml 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