adds working directory #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Xero-Java repo | |
uses: actions/checkout@v4 | |
with: | |
repository: XeroAPI/Xero-Java | |
path: Xero-Java | |
- name: Set up JDK environment | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: maven | |
- name: Import GPG Key | |
run: | | |
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import | |
env: | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY}} | |
- name: Configure Maven settings | |
run: | | |
mkdir -p ~/.m2 | |
cp .github/settings.xml ~/.m2/settings.xml | |
working-directory: Xero-Java | |
- name: Publish to Maven | |
run: | | |
export GPG_TTY=$(tty) | |
mvn clean deploy -DskipTests=true -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} | |
working-directory: Xero-Java |