We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43d1f28 commit 1fd7ab3Copy full SHA for 1fd7ab3
.github/workflows/rah_makerelease.yml
@@ -44,15 +44,19 @@ jobs:
44
./configure
45
make
46
make dist
47
- mkdir "./dist"
+ echo "pwd is"
48
+ pwd
49
+ mkdir "dist"
50
cp *.tar.gz ./dist/
51
52
53
54
55
56
- uses: actions/upload-artifact@v2 #3
57
with:
58
name: linuxartifacts
- path: "./dist/"
59
+ path: "./softdrink_code/dist/"
60
61
- uses: marvinpinto/action-automatic-releases@latest # {{xyz}}varaibles not available in uses
62
@@ -61,7 +65,7 @@ jobs:
65
prerelease: true
66
title: "Build ${{ github.event.inputs.reltag }}" #same as inputs.reltag
63
67
files: |
64
- ./dist/*.tar.gz
68
+ ./softdrink_code/dist/*.*
69
70
71
0 commit comments