From c35956d2b844f1d6710f32c22e5b2ad22b03c818 Mon Sep 17 00:00:00 2001 From: Roberto Wagner Date: Tue, 7 May 2024 15:51:40 -0300 Subject: [PATCH] Create ghpages.yml --- .github/workflows/ghpages.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ghpages.yml diff --git a/.github/workflows/ghpages.yml b/.github/workflows/ghpages.yml new file mode 100644 index 0000000..9c5dd62 --- /dev/null +++ b/.github/workflows/ghpages.yml @@ -0,0 +1,18 @@ +name: Build and Deploy + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Build and Deploy React app to GitHub Pages + uses: omkartapale/react-deployment-gh-pages@v1.0.0