File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 93
93
TRACETEST_ENV : main
94
94
ANALYTICS_FE_KEY : ${{ secrets.ANALYTICS_FE_KEY }}
95
95
ANALYTICS_BE_KEY : ${{ secrets.ANALYTICS_BE_KEY }}
96
+ - name : Upload assets
97
+ uses : actions/upload-artifact@v3
98
+ with :
99
+ name : dist-${{ matrix.GOOS }}
100
+ path : dist/${{ matrix.GOOS }}
96
101
97
102
release :
98
103
runs-on : ubuntu-latest
@@ -124,18 +129,18 @@ jobs:
124
129
- shell : bash
125
130
run : |
126
131
echo "sha_short=$(git rev-parse --short=8 $GITHUB_SHA)" >> $GITHUB_ENV
127
- - uses : actions/cache @v3
132
+ - uses : actions/download-artifact @v3
128
133
with :
129
134
path : dist/linux
130
- key : linux-${{ env.sha_short }}
131
- - uses : actions/cache @v3
135
+ key : dist-linux
136
+ - uses : actions/download-artifact @v3
132
137
with :
133
138
path : dist/darwin
134
- key : darwin-${{ env.sha_short }}
135
- - uses : actions/cache @v3
139
+ key : dist-darwin
140
+ - uses : actions/download-artifact @v3
136
141
with :
137
142
path : dist/windows
138
- key : windows-${{ env.sha_short }}
143
+ key : dist-windows
139
144
- uses : actions/download-artifact@v3
140
145
with :
141
146
name : tracetest-web
You can’t perform that action at this time.
0 commit comments