Skip to content

Commit

Permalink
Add settings file to publish package on github
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrick-marie committed Sep 14, 2022
1 parent d449209 commit b420c74
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">

<servers>
<server>
<id>github</id>
<configuration>
<httpHeaders>
<property>
<name>Authorization</name>
<value>Bearer <GITHUB_TOKEN_GOES HERE></value>
</property>
</httpHeaders>
</configuration>
</server>
</servers>
</settings>

0 comments on commit b420c74

Please sign in to comment.