Skip to content

Commit 58939df

Browse files
committed
Ajout du workflow de déploiement
1 parent 2bfa0e8 commit 58939df

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v2
15+
16+
- name: Build
17+
run: |
18+
echo 'Building the site...'
19+
# Ajoutez ici vos commandes de construction
20+
21+
- name: Deploy
22+
run: |
23+
echo 'Deploying the site...'
24+
# Ajoutez ici vos commandes de déploiement

0 commit comments

Comments
 (0)