File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,14 @@ jobs:
40
40
41
41
- name : Archive build results
42
42
run : |
43
- tar -czvf mlir-build .tar.gz build/
43
+ tar -czvf mlir.tar.gz build/
44
44
if : success()
45
45
46
46
- name : Upload build artifacts
47
47
uses : actions/upload-artifact@v3
48
48
with :
49
- name : mlir-build
50
- path : mlir-build .tar.gz
49
+ name : mlir
50
+ path : mlir.tar.gz
51
51
52
52
upload-to-release :
53
53
name : Upload to GitHub Release
@@ -58,12 +58,12 @@ jobs:
58
58
- name : Download build artifacts
59
59
uses : actions/download-artifact@v3
60
60
with :
61
- name : mlir-build
61
+ name : mlir
62
62
63
63
- name : Upload MLIR build to GitHub Release
64
64
uses : softprops/action-gh-release@v1
65
65
with :
66
- files : mlir-build .tar.gz
66
+ files : mlir.tar.gz
67
67
env :
68
68
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
69
69
You can’t perform that action at this time.
0 commit comments