Add speakers section #9
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: π DEPLOYING IEEE INSAT Student Branch's Website | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
web-deploy: | |
name: π Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Get latest code | |
uses: actions/checkout@v2 | |
- name: Use Node.js 14 | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: '14.0.0' | |
- name: π¨ Build Project | |
run: | | |
npm install --legacy-peer-deps | |
CI=false npm run build | |
- name: π Deploy in ftp server | |
uses: SamKirkland/[email protected] | |
with: | |
server: ftp.smart-sfax.org | |
username: ${{ secrets.ftp_username }} | |
password: ${{ secrets.ftp_password }} | |
local-dir: ./dist/NRW-Website/ | |
server-dir: /nrw.ieee.tn/ |