File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 3131 echo "::set-output name=title::${GITHUB_REF#refs/tags/}"
3232 else
3333 echo "::set-output name=prerelease::true"
34- echo "::set-output name=release_tag::latest "
34+ echo "::set-output name=release_tag::nightly "
3535 echo "::set-output name=title::Development Build"
3636 fi
3737
Original file line number Diff line number Diff line change @@ -37,12 +37,15 @@ impl Jwks {
3737#[ derive( Debug , Deserialize ) ]
3838struct Claims {
3939 /// Audience (who or that the token is intended for). E.g. "https://api.xsnippet.org".
40+ #[ allow( unused) ]
4041 aud : String ,
4142 /// Issuer (who created and signed this token). E.g. "https://xsnippet.eu.auth0.com/".
43+ #[ allow( unused) ]
4244 iss : String ,
4345 /// Subject (whom the token refers to). E.g. "[email protected] ". 4446 sub : String ,
4547 /// Expiration time (seconds since Unix epoch).
48+ #[ allow( unused) ]
4649 exp : usize ,
4750 /// Subject permissions (e.g. vec!["import"])
4851 permissions : Vec < Permission > ,
You can’t perform that action at this time.
0 commit comments