Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,8 @@ jobs:
MAVEN_OPTS: "--add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED" # See https://stackoverflow.com/questions/70153962/nexus-staging-maven-plugin-maven-deploy-failed-an-api-incompatibility-was-enco

release_nuget:
name: Release to GitHub Packages (NuGet)
name: Release to NuGet
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
needs:
- prepare-release
- integration_test
Expand All @@ -284,8 +281,7 @@ jobs:
- name: Release
run: npx -p publib publib-nuget
env:
NUGET_SERVER: "https://nuget.pkg.github.com/open-constructs/index.json"
NUGET_API_KEY: ${{ secrets.GITHUB_TOKEN }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}

release_golang:
name: Release Go to Github Repo
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/release_next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,16 +232,13 @@ jobs:
MAVEN_OPTS: "--add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED" # See https://stackoverflow.com/questions/70153962/nexus-staging-maven-plugin-maven-deploy-failed-an-api-incompatibility-was-enco

release_nuget:
name: Release to GitHub Packages (NuGet)
name: Release to NuGet
needs:
- prepare-release
- integration_test
- provider_integration_test
- unit_test
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
container:
image: terraconstructs/jsii-terraform@sha256:4942a4c6ed8286f403c7855dab56b0e11f9a7115e7e0afbcd49d7e69de4d6dc0
steps:
Expand All @@ -253,8 +250,7 @@ jobs:
- name: Release
run: npx -p publib publib-nuget
env:
NUGET_SERVER: "https://nuget.pkg.github.com/open-constructs/index.json"
NUGET_API_KEY: ${{ secrets.GITHUB_TOKEN }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}

release_golang:
name: Release Go to Github Repo
Expand Down
Loading