Did you add your "jump" action?
Add your "jump" Action in Project Settings -> Input Map
I have just checked the event and its working in C#
public override void _Process(float delta)
{
if (Input.IsActionJustReleased("Jump"))
{
GD.Print("Jump Jump Jump");
}
}