Skip to content

Commit

Permalink
🔃 feat: add workflow cicd like github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Pape Mayel Diagne THIAM authored and Pape Mayel Diagne THIAM committed May 24, 2024
1 parent 24a4765 commit b2737e5
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 2 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: cicd template

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x

- name: Install Dependencies
run: npm install

- name: Build Project
run: npm run build

#- name: Deploy to OVH Hosting for example
# uses: SamKirkland/[email protected]
# with:
# server: ${{ secrets.OVH_FTP_SERVER }}
# username: ${{ secrets.OVH_FTP_USERNAME }}
# password: ${{ secrets.OVH_FTP_PASSWORD }}
# local-dir: ./dist/
# server-dir: /www/

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: yonebi-version-1
path: ./dist

- name: Download Artifact
uses: actions/download-artifact@v2
with:
name: yonebi-version-1
path: 'build'
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ services:

pgdb:
image: postgres:16
container_name: db-senwata
container_name: db-node-express-template
hostname: postgres_db
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=senwata
- POSTGRES_DB=node-express-template
- POSTGRES_HOST_AUTH_METHOD=trust
expose:
- 5432
Expand Down

0 comments on commit b2737e5

Please sign in to comment.