From 8f4847da43438dd713570e8eb36e221c338318db Mon Sep 17 00:00:00 2001 From: sujaykundu777 Date: Mon, 26 Oct 2020 12:47:26 +0530 Subject: [PATCH] adding pages workflow --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..639648fc1 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: Deploy to Github Pages + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Deploy Jekyll Site + uses: sujaykundu777/jekyll-deploy-action@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }} + GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }} \ No newline at end of file