diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 8b7b0e6..163f456 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -105,7 +105,7 @@ jobs: if: ${{ github.event.inputs.release-type == 'major' }} with: name: "settings.json" - dir: "./Sources/Passage/Resources/" + dir: "./Sources/Passage/" json: "{\n\t\"version\": \"${{ needs.determine-next-versions.outputs.next-major }}\"\n}" - name: Update minor version @@ -113,7 +113,7 @@ jobs: if: ${{ github.event.inputs.release-type == 'minor' }} with: name: "settings.json" - dir: "./Sources/Passage/Resources/" + dir: "./Sources/Passage/" json: "{\n\t\"version\": \"${{ needs.determine-next-versions.outputs.next-minor }}\"\n}" - name: Update patch version @@ -121,7 +121,7 @@ jobs: if: ${{ github.event.inputs.release-type == 'patch' }} with: name: "settings.json" - dir: "./Sources/Passage/Resources/" + dir: "./Sources/Passage/" json: "{\n\t\"version\": \"${{ needs.determine-next-versions.outputs.next-patch }}\"\n}" - name: Commit major version change @@ -367,4 +367,4 @@ jobs: body: | This PR was created by the create-release-branch workflow. New Release: v${{ needs.determine-next-versions.outputs.next-patch }} - I've updated the version name and code commit: ${{ steps.make-commit.outputs.commit }}. \ No newline at end of file + I've updated the version name and code commit: ${{ steps.make-commit.outputs.commit }}. diff --git a/Sources/Passage/settings.json b/Sources/Passage/settings.json new file mode 100644 index 0000000..b8bfb0c --- /dev/null +++ b/Sources/Passage/settings.json @@ -0,0 +1,3 @@ +{ + "version": "1.0.0" +}