Merge branch 'main' of https://github.com/ninoslat1/vitets-excel-reader #10
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: Excel Reader App CI/CD | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build project | |
run: npm run build | |
deploy-docker: | |
name: Deploy DockerHub | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push Docker image | |
env: | |
DOCKER_IMAGE: ${{ secrets.DOCKER_USERNAME }}/vitets-excel-reader | |
run: | | |
docker build -t $DOCKER_IMAGE . | |
docker push $DOCKER_IMAGE | |
deploy-digitalocean: | |
name: Deploy DigitalOcean | |
needs: deploy-docker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to DigitalOcean | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
key: ${{ secrets.SSH_PRIVATE_KEYS }} | |
username: ${{ secrets.SSH_USERNAME }} | |
script: | | |
docker pull ${{ secrets.DOCKER_USERNAME }}/vitets-excel-reader |