Skip to content

Commit

Permalink
Feature/add go modules (#15)
Browse files Browse the repository at this point in the history
* switch to go modules

* adapt circle-ci to use go mod

* fix path bug in ci
  • Loading branch information
SimonTheLeg committed May 15, 2019
1 parent 04fdb94 commit 00b4714
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Expand Up @@ -61,10 +61,11 @@ jobs:
environment:
APP_NAME: *app_name
APP_VERSION: *app_version
ARTIFACTS_DIR: *artifacts_dir
steps:
- *attach_artifacts
- run:
name: Publish Release to Github
command: |
echo "Releasing version ${APP_VERSION}"
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${APP_VERSION} ./artifacts
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${APP_VERSION} ${ARTIFACTS_DIR}

0 comments on commit 00b4714

Please sign in to comment.