File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change 9
9
- [ Running] ( #running )
10
10
- [ Configuration] ( #configuration )
11
11
- [ Azure prerequisites] ( #azure-prerequisites )
12
- - [ Releasing] ( #releasing )
12
+ - [ Contributing] ( #contributing )
13
+ - [ Building] ( #building )
14
+ - [ Releasing] ( #releasing )
13
15
14
16
A helper utility to make it easier to get a JSON Web Token (JWT) from a given service. Currently only Azure AD is supported.
15
17
@@ -84,7 +86,23 @@ There is some initial setup we need to do in App Registrations if this is the fi
84
86
- Remain on the same Authentication tab
85
87
- Under ** Advanced settings** at the bottom, toggle the slider for ** Allow public client flows** to ` Yes `
86
88
87
- ## Releasing
89
+ ## Contributing
90
+
91
+ ### Building
92
+
93
+ To build a binary locally in this folder at ` ./get-jwt ` , run:
94
+
95
+ ```
96
+ go build .
97
+ ```
98
+
99
+ To test new changes without making a build artifact:
100
+
101
+ ```
102
+ go run main.go <any subcommands or flags here>
103
+ ```
104
+
105
+ ### Releasing
88
106
89
107
The Github Actions to run goreleaser are triggered by a push of a tag. Example:
90
108
You can’t perform that action at this time.
0 commit comments