Skip to content

Commit

Permalink
Adding settings.xml to solve authentication problem with GitHub packages
Browse files Browse the repository at this point in the history
  • Loading branch information
wnbittle committed Dec 26, 2019
1 parent a7adadf commit 14b0aa4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<settings xmlns="http:https://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http:https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http:https://maven.apache.org/SETTINGS/1.0.0 http:https://maven.apache.org/xsd/settings-1.0.0.xsd">

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

0 comments on commit 14b0aa4

Please sign in to comment.