Skip to content

Commit c123703

Browse files
committedJun 8, 2024
wip
1 parent 1ab0fbe commit c123703

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed
 

‎.github/workflows/deploy.yaml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,23 @@ jobs:
7777
echo "${{ env.PASSWORD }}" | gpg --batch --yes --passphrase-fd 0 --import /tmp/key.asc
7878
rm /tmp/key.asc
7979
80-
- name: release to svn
80+
- name: setup maven
8181
shell: bash -l {0}
82-
run: devsetup -o maven -n
82+
run: |
83+
~/dev/inversoft/fusionauth/fusionauth-developer/setup.sh -o maven -n
84+
export KEY_NAME="FusionAuth Platform Team"
85+
export PASSPHRASE="${{ env.PASSWORD }}"
86+
export OSSRH_USERNAME=""
87+
export OSSRH_PASSWORD=""
88+
export BREWDIR="/usr"
89+
envsubst < ~/dev/inversoft/fusionauth/fusionauth-developer//setup/modules/files/maven/settings.xml > ~/.m2/settings.xml
8390
84-
# - name: release to svn
85-
# if: inputs.command == 'release'
86-
# shell: bash -l {0}
87-
# run: sb release
91+
- name: release to svn
92+
if: inputs.command == 'release'
93+
shell: bash -l {0}
94+
run: sb release
8895

89-
# - name: publish to maven
90-
# if: inputs.command == 'publish'
91-
# shell: bash -l {0}
92-
# run: sb publish
96+
- name: publish to maven
97+
if: inputs.command == 'publish'
98+
shell: bash -l {0}
99+
run: sb publish

0 commit comments

Comments
 (0)