Skip to content

Merge pull request #80 from Hello-Kitchen/62-orders-tab #5

Merge pull request #80 from Hello-Kitchen/62-orders-tab

Merge pull request #80 from Hello-Kitchen/62-orders-tab #5

Workflow file for this run

name: Deploy
on:
workflow_dispatch:
push:
tags:
- "v*"
jobs:
deployEpitech:
runs-on: ubuntu-latest
name: Deploy to EPITECH Repository
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DEPLOY_EPITECH_KEY }}
- name: Clone EPITECH repository
run: |
git clone [email protected]:EpitechPromo2026/G-EIP-700-PAR-7-1-eip-jules.gresset.git
cd G-EIP-700-PAR-7-1-eip-jules.gresset
mkdir -p -v POS-Front-End
rsync -av --delete ../ POS-Front-End/ --exclude .git --exclude G-EIP-700-PAR-7-1-eip-jules.gresset/
- name: Configure Git
run: |
git config --global user.name "Jules Gresset"
git config --global user.email "[email protected]"
- name: Push to EPITECH repository
run: |
cd G-EIP-700-PAR-7-1-eip-jules.gresset
git add .
git commit -m "Update from POS-Front-End (Automation)"
git push origin main