forked from aferreira-deo/jftl-lighthouse-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lucas HIMPENS
committed
Jun 10, 2024
1 parent
92e6316
commit b366680
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Deploy to GitHub Pages #nom de notre process | ||
|
||
on: | ||
push: | ||
branches: | ||
- main #des que cette branche recoit un “push” la CI/CD tournera son job | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v4 #il sert a creer notre config pour github pages | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} #les workflow permissions qu’on a activé | ||
publish_dir: ./src #fichiers qu’on va publier sur le serveur |