File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ commands:
23
23
name : ' Publish Build'
24
24
command : |
25
25
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
26
- ghr $LATEST_TAG terraenv_linux_x64.tar.gz
26
+ ghr $LATEST_TAG dist/ terraenv_linux_x64.tar.gz
27
27
28
28
jobs :
29
29
terraenv_build_release :
Original file line number Diff line number Diff line change 70
70
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
71
71
with :
72
72
upload_url : ${{ steps.extract_upload_url.outputs.upload_url }}
73
- asset_path : terraenv_osx_x64.tar.gz
73
+ asset_path : dist/ terraenv_osx_x64.tar.gz
74
74
asset_name : terraenv_osx_x64.tar.gz
75
75
asset_content_type : application/octet-stream
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM centos:7
2
2
3
3
RUN yum install -y https://centos7.iuscommunity.org/ius-release.rpm && \
4
4
yum update -y && \
5
- yum install -y python36u python36u-libs python36u-devel python36u-pip git
5
+ yum install -y python36u python36u-libs python36u-devel python36u-pip git make
6
6
7
7
ADD https://github.com/tcnksm/ghr/releases/download/v0.13.0/ghr_v0.13.0_linux_amd64.tar.gz .
8
8
RUN tar xvzf ghr_v0.13.0_linux_amd64.tar.gz && cd ghr_v0.13.0_linux_amd64 && \
You can’t perform that action at this time.
0 commit comments