We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe481b commit dac25aaCopy full SHA for dac25aa
.circleci/config.yml
@@ -50,16 +50,18 @@ jobs:
50
root: /go/src/github.com/yonkornilov/cloudless-init
51
paths:
52
- cloudless-init.so
53
+ - .git
54
deploy:
55
docker:
56
- image: tsub/ghr
57
working_directory: /
58
steps:
59
- attach_workspace:
60
at: /cloudless-init
- - checkout:
61
- path: /repo
62
- - run: cd /repo && ghr -u $CIRCLE_USERNAME $(git describe --abbrev=0 --tags) /cloudless-init/cloudless-init.so
+ - run: apk update
+ - run: apk add git
63
+ - run: git clone https://github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
64
+ - run: cd /cloudless-init && ghr -u $CIRCLE_USERNAME $(git describe --abbrev=0 --tags) /cloudless-init/cloudless-init.so
65
workflows:
66
version: 2
67
btd:
0 commit comments