checkout: Could not read username error.

My github action is giving me the error.

image

name: CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Initiate repository
        uses: s4u/maven-settings-action@v2.1.0
        env:
          MAVEN_READ_URL: ${{ secrets.MAVEN_READ_URL }}
          MAVEN_SERVER_ID: ${{ secrets.MAVEN_SERVER_ID }}
          MAVEN_SERVER_PASSWORD: ${{ secrets.MAVEN_SERVER_PASSWORD }}
          MAVEN_SERVER_USERNAME: ${{ secrets.MAVEN_SERVER_USERNAME }}
        with:
          servers: '[{"id": "%MAVEN_SERVER_ID%", "username": "%MAVEN_SERVER_USERNAME%", "password": "%MAVEN_SERVER_PASSWORD%"}]'
          properties: '[{"myMavenRepo.read": "%MAVEN_READ_URL%"}]'

      - name: Set up JDK 1.8
        uses: actions/setup-java@v1
        with:
          java-version: 1.8

      - name: Checkout repository
        uses: actions/checkout@v2
        with:
          path: main

      - name: Checkout private repository
        uses: actions/checkout@v2
        with:
          repository: MinecraftHouse/Ppom
          token: ${{ secrets.ACCESS_TOKEN }}
          path: ppom

#      - name: Build with Maven
#        run: mvn install -Dgpg.skip=true -B -ntp --file pom.xml --settings /home/runner/.m2/settings.xml

About this issue

  • Original URL
  • State: closed
  • Created 4 years ago
  • Comments: 15 (4 by maintainers)

Most upvoted comments

@portlek Well, please keep it open for me 😃