Skip to content

Commit

Permalink
Merge pull request #4 from aaratn/change_artifact_path
Browse files Browse the repository at this point in the history
change artifact path
  • Loading branch information
aaratn authored Dec 9, 2019
2 parents 75614d6 + ea05d03 commit 214679b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ commands:
name: 'Publish Build'
command: |
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
ghr $LATEST_TAG terraenv_linux_x64.tar.gz
ghr $LATEST_TAG dist/terraenv_linux_x64.tar.gz
jobs:
terraenv_build_release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.extract_upload_url.outputs.upload_url }}
asset_path: terraenv_osx_x64.tar.gz
asset_path: dist/terraenv_osx_x64.tar.gz
asset_name: terraenv_osx_x64.tar.gz
asset_content_type: application/octet-stream
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM centos:7

RUN yum install -y https://centos7.iuscommunity.org/ius-release.rpm && \
yum update -y && \
yum install -y python36u python36u-libs python36u-devel python36u-pip git
yum install -y python36u python36u-libs python36u-devel python36u-pip git make

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

0 comments on commit 214679b

Please sign in to comment.