From ac07bb21f91bf7075311ac186c974e75e8dcc1f1 Mon Sep 17 00:00:00 2001 From: Aitor Murguzur Date: Wed, 21 Feb 2024 17:28:27 +0100 Subject: [PATCH] Add deploy github action --- .github/workflows/deploy.yml | 29 +++++++++++++++++++++++++++++ .gitignore | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..47553ee --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,29 @@ +on: + push: + branches: + - main # Change this to your default branch if it's different + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: 18 # Use Node.js 18 here + + - name: Install dependencies + run: npm install + + - name: Build site + run: npm run build + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./build # Change this if your build output directory is different \ No newline at end of file diff --git a/.gitignore b/.gitignore index b2d6de3..e364a30 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,5 @@ npm-debug.log* yarn-debug.log* yarn-error.log* + +/.vscode \ No newline at end of file