Ajout d'un fichier .gitkeep dans le dossier images #9
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
name: My first workflow | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: # Lancement manuel | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
- run: npm install | |
- run: gulp build | |
# Ajouter une étape pour vérifier si le dossier dest/ existe réellement | |
- run: ls -l dest/ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: MyPackage | |
path: dest |