From b9109cc69a30109f04be30117bb753ff5a2cbfb6 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Sun, 9 Mar 2025 19:41:47 +0000 Subject: [PATCH] ci: add deploy step (#3) --- .github/workflows/build-and-test.yml | 8 +++--- .github/workflows/deploy.yml | 38 ++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 4ef8272..21f4e7d 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -13,12 +13,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: '23' + node-version: 'latest' cache: 'npm' - name: Install dependencies @@ -28,7 +28,7 @@ jobs: run: npm run build - name: Test - run: npm run test + run: npm run test - name: Cache Next.js build uses: actions/cache@v3 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..7d6b269 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,38 @@ +name: Deploy site + +on: + push: + branches: [ main ] + + workflow_dispatch: + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 'latest' + cache: 'npm' + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Test + run: npm run test + + - name: Deploy + uses: SamKirkland/FTP-Deploy-Action@v4.3.5 + with: + server: ${{ secrets.SFTP_HOST }} + username: ${{ secrets.SFTP_USERNAME }} + password: ${{ secrets.SFTP_PASSWORD }} + local-dir: "./out" + server-dir: "/root/www-aaronjy-me" \ No newline at end of file