One organisation, two projects, only one works

I have two projects in the same organisation. Both are triggered by Github Actions. The first one runs just fine. The second one, although configured analogous, does not work. The build claims

Failed to execute goal org.sonarsource.scanner.maven:sonar-maven-plugin:3.9.1.2184:sonar (default-cli) on project drkodi: Project not found. Please check the 'sonar.projectKey' and 'sonar.organization' properties, the 'SONAR_TOKEN' environment variable, or contact the project administrator

This is the build.yml that fails:

name: Build 

on: 
push: 
branches: [ "main", "develop" ] 
pull_request: 
types: [opened, synchronize, reopened] 
workflow_dispatch: {} 

env: 
JAVA_VERSION: 17 

defaults: 
run: 
shell: bash 

jobs: 
build: 
name: Compile and Test 
runs-on: ubuntu-latest 
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" 
steps: 
- uses: actions/checkout@v3 
- uses: actions/setup-java@v3 
with: 
distribution: 'temurin' 
java-version: ${{ env.JAVA_VERSION }} 
cache: 'maven' 
- name: Cache SonarCloud packages 
uses: actions/cache@v2 
with: 
path: ~/.sonar/cache 
key: ${{ runner.os }}-sonar 
restore-keys: ${{ runner.os }}-sonar 
- name: Cache Maven packages 
uses: actions/cache@v1 
with: 
path: ~/.m2 
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} 
restore-keys: ${{ runner.os }}-m2 
env: 
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any 
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} 
- name: Build and Test 
run: mvn -Dsonar.host.url="https://sonarcloud.io" -Dsonar.organization=drrename -Dsonar.projectKey=DrRename_drkodi -B verify jacoco:report sonar:sonar

This is the config from the other project that works:

name: Build

on:
  push:
    branches: [ "main", "develop" ]
  pull_request:
    types: [opened, synchronize, reopened]

env:
  JAVA_VERSION: 17

defaults:
  run:
    shell: bash

jobs:
  build:
    name: SonarCloud
    runs-on: ubuntu-latest
    if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-java@v2
        with:
          distribution: 'temurin'
          java-version: ${{ env.JAVA_VERSION }}
          cache: 'maven'
      - name: Cache SonarCloud packages
        uses: actions/cache@v2
        with:
          path: ~/.sonar/cache
          key: ${{ runner.os }}-sonar
          restore-keys: ${{ runner.os }}-sonar
      - name: Build and Test
        run: mvn -B verify
          jacoco:report org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage,dependency-check -Dsonar.projectKey=DrRename_drrename -Dsonar.organization=drrename -Dsonar.host.url=https://sonarcloud.io
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}  # Needed to get PR information, if any
          SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

Hey there.

It looks like the DrRename_drkodi SonarCloud Project is now successfully analyzed. Did the issue get resolved?