Merge pull request #39 from smswithoutborders/staging #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy SMSWithoutBorders Blog on Server (production) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Execute Deployment Script on Server | |
runs-on: ubuntu-latest | |
environment: | |
name: production | |
url: https://blog.smswithoutborders.com | |
steps: | |
- name: Checkout Git Repository | |
uses: actions/checkout@v4 | |
- name: Setup NodeJs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Create .env.local file | |
run: echo "BASE_URL=${{ secrets.BASE_URL }}" > .env.local | |
- name: Install Dependencies | |
run: | | |
npm install -g pnpm | |
pnpm install --no-lockfile | |
- name: Build Application | |
run: pnpm build | |
- name: Securely Copy Artifacts to Server | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.KEY }} | |
source: "./out/*" | |
target: ${{ secrets.BUILD_PATH }} | |
strip_components: 1 | |
rm: true | |
- name: Execute Remote SSH Commands | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.KEY }} | |
script: | | |
set -e | |
echo "============================" | |
echo "Deploy Project ..." | |
echo "============================" | |
if ! ${{secrets.BUILD_CMD}}; then | |
echo "❌ Error deploying project!" | |
exit 1 | |
fi | |
echo "===============================" | |
echo "✅ Deployment complete" | |
echo "===============================" |