Skip to content

Commit 98fb0bf

Browse files
committed
Fixed github actions
1 parent 1e3e71d commit 98fb0bf

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/develop.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build Test
1+
name: Build And Test
22

33
on:
44
push:
@@ -31,10 +31,10 @@ jobs:
3131
- name: Install promu
3232
run: make promu
3333

34-
- name: Upload root
34+
- name: Upload Project Source Code
3535
uses: actions/upload-artifact@v1
3636
with:
37-
name: .
37+
name: src
3838
path: .
3939

4040
- name: Show Project Files
@@ -45,10 +45,14 @@ jobs:
4545
needs: prepare_tools
4646
runs-on: ubuntu-latest
4747
steps:
48-
- name: Download root
48+
- name: Download Project Source Code
4949
uses: actions/download-artifact@v1
5050
with:
51-
name: .
51+
name: src
52+
53+
- name: Move Project Source Code to Root Path
54+
run: mv src/* . && rm -rf src/
55+
shell: bash
5256

5357
- name: Show Project Files
5458
run: ls -la

0 commit comments

Comments
 (0)