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 31
31
echo "::set-output name=title::${GITHUB_REF#refs/tags/}"
32
32
else
33
33
echo "::set-output name=prerelease::true"
34
- echo "::set-output name=release_tag::latest "
34
+ echo "::set-output name=release_tag::nightly "
35
35
echo "::set-output name=title::Development Build"
36
36
fi
37
37
Original file line number Diff line number Diff line change @@ -37,12 +37,15 @@ impl Jwks {
37
37
#[ derive( Debug , Deserialize ) ]
38
38
struct Claims {
39
39
/// Audience (who or that the token is intended for). E.g. "https://api.xsnippet.org".
40
+ #[ allow( unused) ]
40
41
aud : String ,
41
42
/// Issuer (who created and signed this token). E.g. "https://xsnippet.eu.auth0.com/".
43
+ #[ allow( unused) ]
42
44
iss : String ,
43
45
/// Subject (whom the token refers to). E.g. "[email protected] ".
44
46
sub : String ,
45
47
/// Expiration time (seconds since Unix epoch).
48
+ #[ allow( unused) ]
46
49
exp : usize ,
47
50
/// Subject permissions (e.g. vec!["import"])
48
51
permissions : Vec < Permission > ,
You can’t perform that action at this time.
0 commit comments