Skip to content

Update Deploy.yml

Update Deploy.yml #2

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- GF-tmp-build
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Deploy to GitHub Pages
run: |
git config --global user.email "saillantnicolas01@gmail.com"
git config --global user.name "SaillantNicolas"
mv build_doc/* .
git add .
git commit -m "Deploy to GitHub Pages"
git push origin gh-pages