diff --git a/.github/actions/erlang-publish/action.yml b/.github/actions/erlang-publish/action.yml
index 00e7561..78fd62f 100644
--- a/.github/actions/erlang-publish/action.yml
+++ b/.github/actions/erlang-publish/action.yml
@@ -33,10 +33,6 @@ on:
         type: string
         default: .
         description: "Elixir Mix project directory"
-    secrets:
-      GHA_SSH_DEPLOY_KEY:
-        description: "SSH deploy key with read permissions on private deps repos, passed from the caller workflow"
-        required: false
       HEX_KEY:
         description: "API Key for hex package publish on hex.pm"
         required: false
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index a2a963a..73ddf7b 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -5,10 +5,12 @@ on:
     types: [published]
 
 jobs:
-  elixir-ci:
-    uses: ./.github/actions/erlang-publish
-    with:
-      rebar3-version: 3.24.0
-      otp-version: 26.0
-    secrets:
-      HEX_KEY: ${{ secrets.HEX_KEY }}
\ No newline at end of file
+  erlang-publish:
+    runs-on: k8s-medium
+    steps:
+      - name: "Publish to Hex"
+        uses: ./.github/actions/erlang-publish
+        with:
+          rebar3-version: 3.24.0
+          otp-version: 26.0
+          HEX_KEY: ${{ secrets.HEX_KEY }}
\ No newline at end of file