Fix publish github signed apk CI step (again)

This commit is contained in:
Óscar García Amor 2022-04-11 11:58:57 +02:00
parent 3f2cfb131a
commit f121e297df
No known key found for this signature in database
GPG Key ID: E18B2370D3D566EE

View File

@ -118,13 +118,13 @@ jobs:
- ultrasonic-*.apk* - ultrasonic-*.apk*
publish_github_signed_apk: publish_github_signed_apk:
docker: docker:
- image: cimg/go - image: cimg/go:1.18
steps: steps:
- attach_workspace: - attach_workspace:
at: /tmp/ultrasonic-release at: /tmp/ultrasonic-release
- run: - run:
name: install ghr name: install ghr
command: go get -v github.com/tcnksm/ghr command: go install -v github.com/tcnksm/ghr@latest
- run: - run:
name: publish release on github tag name: publish release on github tag
command: ghr -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} ${CIRCLE_TAG} /tmp/ultrasonic-release command: ghr -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} ${CIRCLE_TAG} /tmp/ultrasonic-release