pipeline-updates - disable deployment.yml workflow for now (it's not set up in secrets yet)

This commit is contained in:
Sean Leary 2024-03-02 08:55:24 -06:00
parent 569be9d19e
commit 8de0628bd1

View File

@ -4,79 +4,80 @@
# * https://github.com/actions/setup-java/blob/v3.13.0/docs/advanced-usage.md#Publishing-using-Apache-Maven # * https://github.com/actions/setup-java/blob/v3.13.0/docs/advanced-usage.md#Publishing-using-Apache-Maven
# #
name: Deployment workflow # COMMENTING OUT UNTIL SECRETS CAN BE ADDED
#name: Deployment workflow
on: #
release: #on:
types: [published] # release:
# types: [published]
jobs: #
# old-school build and jar method. No tests run or compiled. #jobs:
publish-1_6: # # old-school build and jar method. No tests run or compiled.
name: Publish Java 1.6 to GitHub Release # publish-1_6:
runs-on: ubuntu-latest # name: Publish Java 1.6 to GitHub Release
permissions: # runs-on: ubuntu-latest
contents: write # permissions:
steps: # contents: write
- uses: actions/checkout@v4 # steps:
- name: Setup java # - uses: actions/checkout@v4
uses: actions/setup-java@v1 # - name: Setup java
with: # uses: actions/setup-java@v1
java-version: 1.6 # with:
- name: Compile Java 1.6 # java-version: 1.6
run: | # - name: Compile Java 1.6
mkdir -p target/classes # run: |
javac -version # mkdir -p target/classes
javac -source 1.6 -target 1.6 -d target/classes/ src/main/java/org/json/*.java # javac -version
- name: Create JAR 1.6 # javac -source 1.6 -target 1.6 -d target/classes/ src/main/java/org/json/*.java
run: | # - name: Create JAR 1.6
jar cvf "target/org.json-1.6-${{ github.ref_name }}.jar" -C target/classes . # run: |
- name: Add 1.6 Jar To Release # jar cvf "target/org.json-1.6-${{ github.ref_name }}.jar" -C target/classes .
uses: softprops/action-gh-release@v1 # - name: Add 1.6 Jar To Release
with: # uses: softprops/action-gh-release@v1
append_body: true # with:
files: | # append_body: true
target/*.jar # files: |
publish: # target/*.jar
name: Publish Java 8 to Maven Central and GitHub Release # publish:
runs-on: ubuntu-latest # name: Publish Java 8 to Maven Central and GitHub Release
permissions: # runs-on: ubuntu-latest
contents: write # permissions:
packages: write # contents: write
steps: # packages: write
- uses: actions/checkout@v4 # steps:
- name: Set up Java for publishing to Maven Central Repository # - uses: actions/checkout@v4
uses: actions/setup-java@v3 # - name: Set up Java for publishing to Maven Central Repository
with:
# Use lowest supported LTS Java version
java-version: '8'
distribution: 'temurin'
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
server-username: MAVEN_USERNAME # env variable for username in deploy
server-password: MAVEN_PASSWORD # env variable for token in deploy
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
- name: Publish to the Maven Central Repository
run: mvn --batch-mode deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
- name: Add Jar To Release
uses: softprops/action-gh-release@v1
with:
append_body: true
files: |
target/*.jar
# - name: Set up Java for publishing to GitHub Packages
# uses: actions/setup-java@v3 # uses: actions/setup-java@v3
# with: # with:
# # Use lowest supported LTS Java version # # Use lowest supported LTS Java version
# java-version: '8' # java-version: '8'
# distribution: 'temurin' # distribution: 'temurin'
# - name: Publish to GitHub Packages # server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
# server-username: MAVEN_USERNAME # env variable for username in deploy
# server-password: MAVEN_PASSWORD # env variable for token in deploy
# gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
# gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
#
# - name: Publish to the Maven Central Repository
# run: mvn --batch-mode deploy # run: mvn --batch-mode deploy
# env: # env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
# MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
# MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
#
# - name: Add Jar To Release
# uses: softprops/action-gh-release@v1
# with:
# append_body: true
# files: |
# target/*.jar
# # - name: Set up Java for publishing to GitHub Packages
# # uses: actions/setup-java@v3
# # with:
# # # Use lowest supported LTS Java version
# # java-version: '8'
# # distribution: 'temurin'
# # - name: Publish to GitHub Packages
# # run: mvn --batch-mode deploy
# # env:
# # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}