-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (32 loc) · 972 Bytes
/
workflow_nodejs.yml
File metadata and controls
50 lines (32 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: BadBunny
on:
workflow_dispatch:
push:
paths-ignore :
- 'CICD/**'
- '.github/workflows/workflow_gcpa.yml'
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Dowloading repository ...
uses: actions/checkout@v2
- name: Executing Docker ...
if: success()
run: |
echo "[WORFLOWS] I am here:'${PWD}' "
echo "[WORFLOWS] ls -la"
ls -la ${PWD}
echo "[WORFLOWS] "
echo "[WORFLOWS] Repository is:'${{ github.workspace }}' "
echo "[WORFLOWS] ls -la "
bash ./Actions/workflow_nodejs.sh
ls -la ${{ github.workspace }}
echo "[WORFLOWS] DONE!!"
- name: Saving artifacts ...
uses: actions/upload-artifact@v2
with:
name: FromContainer
if-no-files-found: error
path: ./index.html
retention-days: 1