Skip to content

Commit

Permalink
Refactor with absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
iwahbe committed Dec 28, 2023
1 parent a7c541c commit 357480c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ runs:
- name: Install Pulumi CLI
uses: pulumi/action-install-pulumi-cli@v2
- name: Nodejs - Publish to NPM
uses: ./lang/nodejs.yml
uses: ${{ github.action_path }}/lang/nodejs.yml
if: (contains(inputs.sdk, 'nodejs') || (contains(inputs.sdk, 'all') && !contains(inputs.sdk, '!all'))) && !contains(inputs.sdk, '!nodejs')
- name: .NET - Publish to Nuget
if: (contains(inputs.sdk, 'dotnet') || (contains(inputs.sdk, 'all') && !contains(inputs.sdk, '!all'))) && !contains(inputs.sdk, '!dotnet')
uses: ./lang/dotnet.yml
uses: ${{ github.action_path }}/lang/dotnet.yml
- name: Python - Publish to PyPi
if: (contains(inputs.sdk, 'python') || (contains(inputs.sdk, 'all') && !contains(inputs.sdk, '!all'))) && !contains(inputs.sdk, '!python')
uses: ./lang/python.yml
uses: ${{ github.action_path }}/lang/python.yml
- name: Java - Publish to Maven
if: (contains(inputs.sdk, 'java') || (contains(inputs.sdk, 'all') && !contains(inputs.sdk, '!all'))) && !contains(inputs.sdk, '!java')
uses: ./lang/java.yml
uses: ${{ github.action_path }}/lang/java.yml

0 comments on commit 357480c

Please sign in to comment.