Skip to content

Commit 1c8de0f

Browse files
authored
Merge pull request #10 from FRC-Dozer/PrecociouslyDigital-Circleci-github-auth
Add Github Token to CircleCI Build
2 parents 8a46587 + 6dfa9db commit 1c8de0f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ jobs:
8181
- run:
8282
name: Create a new GitHub Release
8383
command: >
84-
github-release upload --owner $CIRCLE_PROJECT_USERNAME \
84+
github-release upload
85+
-t $GITHUB_TOKEN \
86+
--owner $CIRCLE_PROJECT_USERNAME \
8587
--repo $CIRCLE_PROJECT_REPONAME \
8688
--tag $CIRCLE_TAG \
8789
--name $CIRCLE_TAG \
@@ -99,7 +101,6 @@ workflows:
99101
requires:
100102
- artifact
101103
- deploy:
102-
type: approval
103104
filters:
104105
branches:
105106
only:

Readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
Dozer is a framework for robots built with [WPILib](https://github.com/wpilibsuite) to help write fluent, readable code.
44

5+
Build: [![CircleCI](https://circleci.com/gh/FRC-Dozer/Dozer/tree/master.svg?style=svg)](https://circleci.com/gh/FRC-Dozer/Dozer/tree/master)
6+
57
## Features
68

79
* A task scheduler that allows you to write your robot logic as coroutines

0 commit comments

Comments
 (0)