Skip to content

Commit 63c2b37

Browse files
authored
Merge pull request #6 from tong/ci-fix-missing-artifact-storage
CI : Add missing artifact config, unify names
2 parents 74d6787 + 7f6bf79 commit 63c2b37

File tree

3 files changed

+60
-10
lines changed

3 files changed

+60
-10
lines changed

.github/workflows/playground.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Store artifact
2828
uses: actions/upload-artifact@v2
2929
with:
30-
name: armory_tutotorial-${{ env.project }}-html5
30+
name: ${{ env.project }}-html5
3131
path: ${{ env.project }}/build_${{ env.project }}/html5
3232
- name: Deploy gh-pages
3333
uses: JamesIves/[email protected]
@@ -54,7 +54,7 @@ jobs:
5454
- name: Store artifact
5555
uses: actions/upload-artifact@v2
5656
with:
57-
name: armory_tutorial-${{ env.project }}-krom-linux
57+
name: ${{ env.project }}-krom-linux
5858
path: ${{ env.project }}/build_${{ env.project }}/krom-linux
5959
linux-hl:
6060
runs-on: ubuntu-latest
@@ -70,7 +70,7 @@ jobs:
7070
- name: Store artifact
7171
uses: actions/upload-artifact@v2
7272
with:
73-
name: armory_tutorial-${{ env.project }}-linux
73+
name: ${{ env.project }}-linux
7474
path: ${{ env.project }}/build_${{ env.project }}/linux-hl
7575
android-hl:
7676
runs-on: ubuntu-latest
@@ -86,7 +86,7 @@ jobs:
8686
- name: Store artifact
8787
uses: actions/upload-artifact@v2
8888
with:
89-
name: armory_tutorial-${{ env.project }}-android
89+
name: ${{ env.project }}-android
9090
path: ${{ env.project }}/build_${{ env.project }}/android-hl
9191
windows-hl:
9292
runs-on: ubuntu-latest
@@ -102,7 +102,7 @@ jobs:
102102
- name: Store artifact
103103
uses: actions/upload-artifact@v2
104104
with:
105-
name: armory_tutorial-${{ env.project }}-windows
105+
name: ${{ env.project }}-windows
106106
path: ${{ env.project }}/build_${{ env.project }}/windows-hl
107107
macos-hl:
108108
runs-on: ubuntu-latest
@@ -118,7 +118,7 @@ jobs:
118118
- name: Store artifact
119119
uses: actions/upload-artifact@v2
120120
with:
121-
name: armory_tutorial-${{ env.project }}-macos
121+
name: ${{ env.project }}-macos
122122
path: ${{ env.project }}/build_${{ env.project }}/macos-hl
123123
ios-hl:
124124
runs-on: ubuntu-latest
@@ -134,5 +134,5 @@ jobs:
134134
- name: Store artifact
135135
uses: actions/upload-artifact@v2
136136
with:
137-
name: armory_tutorial-${{ env.project }}-ios
137+
name: ${{ env.project }}-ios
138138
path: ${{ env.project }}/build_${{ env.project }}/ios-hl

.github/workflows/tanks_nodes.yml

+27-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Store artifact
2828
uses: actions/upload-artifact@v2
2929
with:
30-
name: ${{ env.project }}_html5
30+
name: ${{ env.project }}-html5
3131
path: ${{ env.project }}/build_${{ env.project }}/html5
3232
- name: Deploy gh-pages
3333
uses: JamesIves/[email protected]
@@ -54,7 +54,7 @@ jobs:
5454
- name: Store artifact
5555
uses: actions/upload-artifact@v2
5656
with:
57-
name: ${{ env.project }}_krom
57+
name: ${{ env.project }}-krom-linux
5858
path: ${{ env.project }}/build_${{ env.project }}/krom-linux
5959
linux-hl:
6060
runs-on: ubuntu-latest
@@ -67,6 +67,11 @@ jobs:
6767
with:
6868
blend: ${{ env.project }}/${{ env.project }}.blend
6969
exporter: linux-hl
70+
- name: Store artifact
71+
uses: actions/upload-artifact@v2
72+
with:
73+
name: ${{ env.project }}-linux
74+
path: ${{ env.project }}/build_${{ env.project }}/linux-hl
7075
android-hl:
7176
runs-on: ubuntu-latest
7277
env:
@@ -78,6 +83,11 @@ jobs:
7883
with:
7984
blend: ${{ env.project }}/${{ env.project }}.blend
8085
exporter: android-hl
86+
- name: Store artifact
87+
uses: actions/upload-artifact@v2
88+
with:
89+
name: ${{ env.project }}-android
90+
path: ${{ env.project }}/build_${{ env.project }}/android-hl
8191
windows-hl:
8292
runs-on: ubuntu-latest
8393
env:
@@ -89,6 +99,11 @@ jobs:
8999
with:
90100
blend: ${{ env.project }}/${{ env.project }}.blend
91101
exporter: windows-hl
102+
- name: Store artifact
103+
uses: actions/upload-artifact@v2
104+
with:
105+
name: ${{ env.project }}-windows
106+
path: ${{ env.project }}/build_${{ env.project }}/windows-hl
92107
macos-hl:
93108
runs-on: ubuntu-latest
94109
env:
@@ -100,6 +115,11 @@ jobs:
100115
with:
101116
blend: ${{ env.project }}/${{ env.project }}.blend
102117
exporter: macos-hl
118+
- name: Store artifact
119+
uses: actions/upload-artifact@v2
120+
with:
121+
name: ${{ env.project }}-macos
122+
path: ${{ env.project }}/build_${{ env.project }}/macos-hl
103123
ios-hl:
104124
runs-on: ubuntu-latest
105125
env:
@@ -111,3 +131,8 @@ jobs:
111131
with:
112132
blend: ${{ env.project }}/${{ env.project }}.blend
113133
exporter: ios-hl
134+
- name: Store artifact
135+
uses: actions/upload-artifact@v2
136+
with:
137+
name: ${{ env.project }}-ios
138+
path: ${{ env.project }}/build_${{ env.project }}/ios-hl

.github/workflows/tanks_script.yml

+26-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Store artifact
5555
uses: actions/upload-artifact@v2
5656
with:
57-
name: ${{ env.project }}_krom
57+
name: ${{ env.project }}-krom-linux
5858
path: ${{ env.project }}/build_${{ env.project }}/krom-linux
5959
linux-hl:
6060
runs-on: ubuntu-latest
@@ -67,6 +67,11 @@ jobs:
6767
with:
6868
blend: ${{ env.project }}/${{ env.project }}.blend
6969
exporter: linux-hl
70+
- name: Store artifact
71+
uses: actions/upload-artifact@v2
72+
with:
73+
name: ${{ env.project }}-linux
74+
path: ${{ env.project }}/build_${{ env.project }}/linux-hl
7075
android-hl:
7176
runs-on: ubuntu-latest
7277
env:
@@ -78,6 +83,11 @@ jobs:
7883
with:
7984
blend: ${{ env.project }}/${{ env.project }}.blend
8085
exporter: android-hl
86+
- name: Store artifact
87+
uses: actions/upload-artifact@v2
88+
with:
89+
name: ${{ env.project }}-android
90+
path: ${{ env.project }}/build_${{ env.project }}/android-hl
8191
windows-hl:
8292
runs-on: ubuntu-latest
8393
env:
@@ -89,6 +99,11 @@ jobs:
8999
with:
90100
blend: ${{ env.project }}/${{ env.project }}.blend
91101
exporter: windows-hl
102+
- name: Store artifact
103+
uses: actions/upload-artifact@v2
104+
with:
105+
name: ${{ env.project }}-windows
106+
path: ${{ env.project }}/build_${{ env.project }}/windows-hl
92107
macos-hl:
93108
runs-on: ubuntu-latest
94109
env:
@@ -100,6 +115,11 @@ jobs:
100115
with:
101116
blend: ${{ env.project }}/${{ env.project }}.blend
102117
exporter: macos-hl
118+
- name: Store artifact
119+
uses: actions/upload-artifact@v2
120+
with:
121+
name: ${{ env.project }}-macos
122+
path: ${{ env.project }}/build_${{ env.project }}/macos-hl
103123
ios-hl:
104124
runs-on: ubuntu-latest
105125
env:
@@ -111,3 +131,8 @@ jobs:
111131
with:
112132
blend: ${{ env.project }}/${{ env.project }}.blend
113133
exporter: ios-hl
134+
- name: Store artifact
135+
uses: actions/upload-artifact@v2
136+
with:
137+
name: ${{ env.project }}-ios
138+
path: ${{ env.project }}/build_${{ env.project }}/ios-hl

0 commit comments

Comments
 (0)