build: fix yaml syntax
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index dce5e37..781fec9 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -20,12 +20,10 @@
           XDG_CACHE_HOME: ~/.cache/bazel-repo
         run: |
           # Test the repository.
-          bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test
-          --config=release //...
+          bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test --config=release //...
           # Copy the release artifacts to /tmp/aspect/release.
           rm -rf /tmp/aspect/release
-          bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc run
-          --config=release //release -- /tmp/aspect/release
+          bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc run --config=release //release -- /tmp/aspect/release
       - name: Release
         uses: softprops/action-gh-release@v1
         with: