File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ jobs:
29
29
30
30
- name : Export tgz
31
31
run : |
32
- docker save ghcr.io/${{ github.repository }}:latest > gitpod-eks-guide.tar
32
+ docker save ghcr.io/${{ github.repository }}:latest | gzip > gitpod-eks-guide.tgz
33
33
34
34
- name : Release
35
35
uses : ncipollo/release-action@v1
36
36
if : startsWith(github.ref, 'refs/tags/')
37
37
with :
38
- artifacts : gitpod-eks-guide.tar
38
+ artifacts : gitpod-eks-guide.tgz
39
39
allowUpdates : true
40
40
artifactErrorsFailBuild : true
41
41
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -31,9 +31,11 @@ WORKDIR /gitpod
31
31
COPY package.json /gitpod/
32
32
COPY yarn.lock /gitpod/
33
33
34
- RUN yarn --pure-lockfile --non-interactive
34
+ RUN yarn --pure-lockfile --non-interactive \
35
+ && rm -rf /usr/local/share/.cache/yarn
35
36
36
- RUN yarn global add aws-cdk npx
37
+ RUN yarn global add aws-cdk npx \
38
+ && rm -rf /usr/local/share/.cache/yarn
37
39
38
40
COPY . /gitpod
39
41
You can’t perform that action at this time.
0 commit comments