From 5c9b4a9586e3b9fdc48343173678f99d7aabccbf Mon Sep 17 00:00:00 2001 From: Yazdan Haider <92041860+yazdanhaider@users.noreply.github.com> Date: Tue, 27 Aug 2024 06:16:29 +0530 Subject: [PATCH] Create pages.yml --- .github/workflows/pages.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 0000000..160ed2e --- /dev/null +++ b/.github/workflows/pages.yml @@ -0,0 +1,19 @@ +name: Pages + +on: + push: + branches: + - main # or master, depending on your default branch + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.TOKEN }} + publish_dir: ./client