diff --git a/.gitea/workflows/develop-deploy.yml b/.gitea/workflows/develop-deploy.yml new file mode 100644 index 0000000..ba70ca8 --- /dev/null +++ b/.gitea/workflows/develop-deploy.yml @@ -0,0 +1,26 @@ +name: Build Site Develop +on: + push: + branches: + - develop + +jobs: + Build-Site: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '16.x' + - run: npm install + - run: npm run build + - name: Publish + uses: nogsantos/scp-deploy@master + with: + src: ./build/* + host: ${{ secrets.SSH_HOST }} + remote: ${{ variables.SSH_DIR }} + port: 69 + user: ${{ secrets.SSH_USER }} + key: ${{ secrets.SSH_KEY }} \ No newline at end of file diff --git a/.gitea/workflows/main-deploy.yml b/.gitea/workflows/main-deploy.yml new file mode 100644 index 0000000..f206bc4 --- /dev/null +++ b/.gitea/workflows/main-deploy.yml @@ -0,0 +1,17 @@ +name: Build Site Main +on: + push: + branches: + - main + +jobs: + Build-Site: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '16.x' + - run: npm install + - run: npm run build \ No newline at end of file diff --git a/.gitea/workflows/pr-build.yml b/.gitea/workflows/pr-build.yml new file mode 100644 index 0000000..5a402e7 --- /dev/null +++ b/.gitea/workflows/pr-build.yml @@ -0,0 +1,18 @@ +name: Build Site PR +on: + pull_request: + branches: + - 'feat/**' + - 'develop' + +jobs: + Build-Site: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '16.x' + - run: npm install + - run: npm run build \ No newline at end of file