From ed0f7aac2444bedcf2c1aed40b2d706ba24109a8 Mon Sep 17 00:00:00 2001 From: rosenrusinov Date: Tue, 24 Oct 2023 14:04:46 +0200 Subject: [PATCH] Create deploy.yaml --- .github/workflows/deploy.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/deploy.yaml diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..3ea2f3c --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,18 @@ +name: Build and Deploy + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +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