Skip to content

Commit

Permalink
chore: escaping with CDATA (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
octonato authored Nov 20, 2024
1 parent 0f1e735 commit b3221ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/publish-maven.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ cat <<EOF >~/.m2/settings.xml
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.passphrase>${PGP_PASSPHRASE}</gpg.passphrase>
<gpg.passphrase><![CDATA[${PGP_PASSPHRASE}]]></gpg.passphrase>
</properties>
</profile>
</profiles>
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
export SDK_VERSION="$(cat ~/akka-javasdk-version.txt)"
./.github/publish-maven.sh
env:
PGP_PASSPHRASE: '${{ secrets.PGP_PASSPHRASE }}'
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_AKKA_IO_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_AKKA_IO_PASSWORD }}

0 comments on commit b3221ba

Please sign in to comment.