Skip to content

Commit 214679b

Browse files
authored
Merge pull request #4 from aaratn/change_artifact_path
change artifact path
2 parents 75614d6 + ea05d03 commit 214679b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ commands:
2323
name: 'Publish Build'
2424
command: |
2525
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
2727
2828
jobs:
2929
terraenv_build_release:

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ jobs:
7070
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7171
with:
7272
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
7474
asset_name: terraenv_osx_x64.tar.gz
7575
asset_content_type: application/octet-stream

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM centos:7
22

33
RUN yum install -y https://centos7.iuscommunity.org/ius-release.rpm && \
44
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
66

77
ADD https://github.com/tcnksm/ghr/releases/download/v0.13.0/ghr_v0.13.0_linux_amd64.tar.gz .
88
RUN tar xvzf ghr_v0.13.0_linux_amd64.tar.gz && cd ghr_v0.13.0_linux_amd64 && \

0 commit comments

Comments
 (0)