This is an automated email from the ASF dual-hosted git repository.
arm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-actions.git
The following commit(s) were added to refs/heads/main by this push:
new 55ce28d Make sure the env var gets used
55ce28d is described below
commit 55ce28d2dd2c2952279a209a5c465347697b53b5
Author: Alastair McFarlane <[email protected]>
AuthorDate: Fri Jan 16 17:10:08 2026 +0000
Make sure the env var gets used
---
.github/workflows/distribute-maven-stg.yml | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/distribute-maven-stg.yml
b/.github/workflows/distribute-maven-stg.yml
index db71bac..aedbe2a 100644
--- a/.github/workflows/distribute-maven-stg.yml
+++ b/.github/workflows/distribute-maven-stg.yml
@@ -64,7 +64,7 @@ jobs:
- name: Create settings.xml
run: |
mkdir -p ~/.m2
- cat > ~/.m2/settings.xml << 'EOF'
+ cat > ~/.m2/settings.xml << EOF
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<pluginGroups>
@@ -83,11 +83,10 @@ jobs:
</servers>
</settings>
EOF
- cat ~/.m2/settings.xml
- name: Create pom.xml
run: |
- cat > pom.xml << 'EOF'
+ cat > pom.xml << EOF
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
@@ -107,7 +106,6 @@ jobs:
</build>
</project>
EOF
- cat pom.xml
- name: Set up JDK 17
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]