Skip to content

Commit

Permalink
Point to local directory
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvisser authored and GuusdeWit committed Oct 2, 2023
1 parent 3475670 commit 2224fb8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/cd-major-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3.5.0
- id: CD
uses: .github/actions/cd@v1
uses: ./.github/workflows/actions/cd@v1
with:
new-version: '\${parsedVersion.nextMajorVersion}.0.0'
2 changes: 1 addition & 1 deletion .github/workflows/cd-minor-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3.5.0
- id: CD
uses: .github/actions/cd@v1
uses: ./.github/workflows/actions/cd@v1
with:
new-version: '\${parsedVersion.majorVersion}.\${parsedVersion.nextMinorVersion}.0'
2 changes: 1 addition & 1 deletion .github/workflows/cd-patch-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3.5.0
- id: CD
uses: .github/actions/cd@v1
uses: ./.github/workflows/actions/cd@v1
with:
new-version: '\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion}'

0 comments on commit 2224fb8

Please sign in to comment.