From f3c25c23104bb3b23780a32868a6898e1049f8ab Mon Sep 17 00:00:00 2001 From: momok88 <116315232+momok88@users.noreply.github.com> Date: Mon, 19 Feb 2024 23:54:58 +0200 Subject: [PATCH] Create deploy.yml --- .github/workflows/deploy.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 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..118bd60 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,33 @@ +name: Deploy to Heroku +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '14' + + - name: Install dependencies + run: npm install + + - name: Build application + run: npm run build + + - name: Login to Heroku + uses: actions/heroku@v7 + with: + heroku_api_key: ${{ secrets.HEROKU_API_KEY }} + heroku_app_name: 'your-heroku-app-name' + + - name: Deploy to Heroku + run: git push heroku main