We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bfa0e8 commit 58939dfCopy full SHA for 58939df
1 file changed
.github/workflows/deploy.yml
@@ -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
23
+ echo 'Deploying the site...'
24
+ # Ajoutez ici vos commandes de déploiement
0 commit comments