conveyal / maven-semantic-release

Automated release management for maven projects
34 stars 19 forks source link

doc: maven-settings.xml for Github Actions #68

Open nealeu opened 2 years ago

nealeu commented 2 years ago

After a little digging as to how things run, it's perhaps worth documenting that maven-settings.xml needs to match the one that Github Actions installs during actions/setup-java

  <servers>
    <server>
      <id>github</id>
      <username>${env.GITHUB_ACTOR}</username>
      <password>${env.GITHUB_TOKEN}</password>
    </server>
  </servers>