Skip to content

Commit

Permalink
fix: reference to local action not working (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArwynFr committed Sep 11, 2023
1 parent e5e2e79 commit e6ff959
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,23 @@ outputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v4
name: Checkout source files
- shell: pwsh
name: Install Powershell module ConventionalVersioning
run: |
Install-Module -Force ConventionalVersioning
Import-Module -Force ConventionalVersioning
- uses: ./get-newVersion
- shell: pwsh
name: Calculate new version for the repository
id: new-github-release
env:
GH_TOKEN: ${{ github.token }}
with:
allow-additional-modifiers: ${{ inputs.allow-additional-modifiers }}
feat-upgrades-minor: ${{ inputs.feat-upgrades-minor }}
strict-types: ${{ inputs.strict-types }}
run: |
New-RepositoryVersion `
-RepositoryName "${{ github.repository }}" `
-CommitMessage "${{ github.event.head_commit.message }}" `
-FeatUpgradesMinor:$${{ inputs.feat-upgrades-minor }} `
-AllowAdditionalModifiers:$${{ inputs.allow-additional-modifiers }}
- shell: pwsh
name: Publish a new release on Github
Expand Down

0 comments on commit e6ff959

Please sign in to comment.