-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor out each language to it's own composite action
This makes it much easier to read the composite action, and reduces the need to include the (increasingly complicated) `if:` check in each step. I'm not 100% sure this will work, and I'm not aware of a way to test. I'm going to push this, then check that it works as expected.
- Loading branch information
Showing
5 changed files
with
131 additions
and
115 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: 'Publish to Nuget' | ||
description: 'A subcomponent of pulumi-package-publish' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Setup DotNet | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.DOTNETVERSION }} | ||
- name: Download dotnet SDK | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: dotnet-sdk.tar.gz | ||
path: ${{ github.workspace }}/sdk/ | ||
- name: Uncompress dotnet SDK | ||
run: tar -zxf ${{ github.workspace }}/sdk/dotnet.tar.gz -C | ||
${{ github.workspace }}/sdk/dotnet | ||
shell: bash | ||
- name: Publish dotnet SDK | ||
run: find "${{ github.workspace }}/sdk/dotnet/bin/Debug/" -name 'Pulumi.*.nupkg' | ||
-exec dotnet nuget push -k "${NUGET_PUBLISH_KEY}" -s https://api.nuget.org/v3/index.json {} \; | ||
shell: bash |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: 'Publish to Maven' | ||
description: 'A subcomponent of pulumi-package-publish' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Setup Java | ||
uses: actions/setup-java@v3 | ||
with: | ||
cache: gradle | ||
distribution: temurin | ||
java-version: ${{ env.JAVAVERSION }} | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
gradle-version: "7.6" | ||
- name: Download java SDK | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: java-sdk.tar.gz | ||
path: ${{ github.workspace}}/sdk/ | ||
- name: Uncompress java SDK | ||
run: tar -zxf ${{github.workspace}}/sdk/java.tar.gz -C | ||
${{github.workspace}}/sdk/java | ||
shell: bash | ||
- name: Set PACKAGE_VERSION to Env | ||
run: echo "PACKAGE_VERSION=$(pulumictl get version --language generic)" >> | ||
$GITHUB_ENV | ||
shell: bash | ||
- name: Publish Java SDK | ||
continue-on-error: true | ||
uses: gradle/gradle-build-action@9b814496b50909128c6a52622b416c5ffa04db49 | ||
with: | ||
arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository | ||
build-root-directory: ./sdk/java | ||
gradle-version: 7.4.1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: 'Publish to NPM' | ||
description: 'A subcomponent of pulumi-package-publish' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.NODEVERSION }} | ||
registry-url: https://registry.npmjs.org | ||
- name: Download nodejs SDK | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: nodejs-sdk.tar.gz | ||
path: ${{ github.workspace }}/sdk/ | ||
- name: Uncompress nodejs SDK | ||
run: tar -zxf ${{ github.workspace }}/sdk/nodejs.tar.gz -C | ||
${{ github.workspace }}/sdk/nodejs | ||
shell: bash | ||
- name: Run npm whoami | ||
run: npm whoami | ||
shell: bash | ||
env: | ||
NODE_AUTH_TOKEN: ${{ env.NODE_AUTH_TOKEN }} | ||
- name: Publish Node | ||
run: pulumi package publish-sdk nodejs --path ${{ github.workspace }}/sdk/nodejs/bin | ||
shell: bash | ||
env: | ||
NODE_AUTH_TOKEN: ${{ env.NODE_AUTH_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: 'Publish to PyPi' | ||
description: 'A subcomponent of pulumi-package-publish' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ env.PYTHONVERSION }} | ||
- name: Download python SDK | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: python-sdk.tar.gz | ||
path: ${{ github.workspace }}/sdk/ | ||
- name: Uncompress python SDK | ||
run: tar -zxf ${{ github.workspace }}/sdk/python.tar.gz -C | ||
${{ github.workspace }}/sdk/python | ||
shell: bash | ||
- name: Install Twine | ||
run: python -m pip install pip twine | ||
shell: bash | ||
- name: Publish Python SDK | ||
run: if [ -n "${PYPI_USERNAME}" ] ; | ||
then PYPI_PUBLISH_USERNAME=${PYPI_USERNAME}; | ||
else PYPI_PUBLISH_USERNAME="pulumi"; | ||
fi && | ||
echo "Publishing Pip package to pypi as ${PYPI_PUBLISH_USERNAME}:" && | ||
twine upload | ||
-u "${PYPI_PUBLISH_USERNAME}" -p "${PYPI_PASSWORD}" | ||
"${{ github.workspace }}/sdk/python/bin/dist/*" | ||
--skip-existing | ||
--verbose | ||
shell: bash |