Skip to content

Commit a67d156

Browse files
committed
lets try something else than ghr
1 parent 16e9c00 commit a67d156

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.circleci/config.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,25 @@ commands:
1717
publish:
1818
steps:
1919
- run:
20-
name: Download ghr
20+
name: Download github-release
2121
shell: bash.exe
2222
command: |
23-
curl -L --output ghr.zip https://github.com/tcnksm/ghr/releases/download/v0.13.0/ghr_v0.13.0_windows_386.zip
24-
unzip -u -d C:/ghr ghr.zip
23+
curl -L --output github-release.zip https://github.com/github-release/github-release/releases/download/v0.8.1/windows-amd64-github-release.zip
24+
unzip -u -d C:/github-release github-release.zip
2525
- run:
2626
name: zip release
2727
command: |
2828
tar.exe -a -c -f C:\publish\busylight-client.zip C:\publish\busylight-client.exe C:\publish\appsettings.json
2929
- run:
3030
name: Create Github releases
3131
command: |
32-
C:\ghr\ghr_v0.13.0_windows_386\ghr.exe -replace $CIRCLE_TAG C:\publish\busylight-client.zip
32+
C:\github-release\bin\windows\amd64\github-release upload \
33+
--user Gaardsholt \
34+
--repo busylight-client \
35+
--tag $CIRCLE_TAG \
36+
--name "busylight-client.zip" \
37+
--file C:\publish\busylight-client.zip \
38+
--replace
3339
3440
jobs:
3541
build:

0 commit comments

Comments
 (0)