💄 on vérifie la dispo des fichiers
This commit is contained in:
parent
fc0ba0c824
commit
275b17b117
@ -2,7 +2,7 @@ name: roulette
|
||||
on: ['push']
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
@ -17,4 +17,18 @@ jobs:
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: production-files
|
||||
path: ./dist
|
||||
path: ./dist
|
||||
|
||||
deploy:
|
||||
name: Deploy
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: production-files
|
||||
path: ./dist
|
||||
# On regarde si les fichiers sont là
|
||||
- name: List files
|
||||
run: ls -l ./dist
|
Loading…
Reference in New Issue
Block a user