fix: clear when do preceding steps #22
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: Frontend Deploy | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- frontend/** | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: prod | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Nodejs 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
cache-dependency-path: "frontend/package-lock.json" | |
- name: Install modules | |
working-directory: frontend | |
run: npm ci | |
- name: Build | |
working-directory: frontend | |
run: npm run build | |
- name: Copy dist | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.KEY }} | |
source: docker-compose.yaml, frontend/dist/ | |
target: ~/${{ github.event.repository.name }} | |
- name: Reload docker compose | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.KEY }} | |
script: | | |
cd ~/${{ github.event.repository.name }} | |
docker compose up -d fe |