diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 398f1904..ab793b73 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -6,7 +6,7 @@ on:
       - 'v[0-9]+.[0-9]+.[0-9]+'
 
 jobs:
-  build:
+  release:
     runs-on: ubuntu-latest
     permissions:
       contents: write
diff --git a/justfile b/justfile
index 07f8b541..e36b66ba 100644
--- a/justfile
+++ b/justfile
@@ -6,7 +6,7 @@ default:
 
 # Get coverage profile
 coverage:
-  go test -v -coverprofile=provile.cov ./...
+  go test -v -coverprofile=profile.cov ./...
 
 # Linting and static checks
 lint: