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 783e837 commit f93c536Copy full SHA for f93c536
1 file changed
.circleci/config.yml
@@ -121,8 +121,10 @@ jobs:
121
- run:
122
name: "Publish Release on GitHub"
123
command: |
124
+ cd ~/project
125
VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g' | tr -d '[[:space:]]')
- ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ~/project/addons/lockbox-signed.xpi
126
+ echo "Release ${VERSION}"
127
+ ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ./addons/lockbox-signed.xpi
128
build-documentation:
129
docker:
130
- image: python:3.7
0 commit comments