diff --git a/.github/workflows/freebsd.yml b/.github/workflows/freebsd.yml
index ab395dbc60d3010bbf19ee1f3f3d2045749f80cd..3b3ef9e578ea4593ff26883d082da9f2eee51500 100644
--- a/.github/workflows/freebsd.yml
+++ b/.github/workflows/freebsd.yml
@@ -70,7 +70,14 @@ jobs:
           startsWith(github.ref, 'refs/heads/release/') ||
           startsWith(github.ref, 'refs/tags/') )
         with:
-          job-name: ${{ github.job }} (${{ join(matrix.*, ', ') }})
+          # Unfortunately, `${{ github.job }} (${{ join(matrix.*, ', ') }})` is
+          # evaluated to `freebsd (Object)` and that's why the job name is made
+          # manually. Looks like the ChristopherHX/github-act-runner agent has
+          # a bug somewhere.
+          job-name: ${{ format(
+            'freebsd ({0}, {1})',
+            matrix.freebsd-version,
+            matrix.tarantool-branch) }}
           access-key-id: ${{ secrets.MULTIVAC_S3_ACCESS_KEY_ID }}
           secret-access-key: ${{ secrets.MULTIVAC_S3_SECRET_ACCESS_KEY }}
           source: ${{ env.VARDIR }}/artifacts