Skip to content

Commit bf2a436

Browse files
committed
Fix regex
1 parent adb4c77 commit bf2a436

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/create-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
submodules: true
6565

6666
- name: update-version
67-
uses: KSPModdingLibs/KSPBuildTools/.github/actions/update-version@main
67+
uses: KSPModdingLibs/KSPBuildTools/.github/actions/update-version@0.0.4
6868
with:
6969
version-string: ${{ inputs.version-string }}
7070
template-extension: ${{ inputs.version-template-extension }}
@@ -92,7 +92,7 @@ jobs:
9292

9393
- name: compile
9494
if: ${{ inputs.use-msbuild }}
95-
uses: KSPModdingLibs/KSPBuildTools/.github/actions/compile@main
95+
uses: KSPModdingLibs/KSPBuildTools/.github/actions/compile@0.0.4
9696
with:
9797
build-configuration: ${{ inputs.build-configuration }}
9898
ksp-zip-url: ${{ inputs.ksp-zip-url }}
@@ -101,7 +101,7 @@ jobs:
101101

102102
- name: assemble-release
103103
id: assemble-release
104-
uses: KSPModdingLibs/KSPBuildTools/.github/actions/assemble-release@main
104+
uses: KSPModdingLibs/KSPBuildTools/.github/actions/assemble-release@0.0.4
105105
with:
106106
artifacts: ${{ inputs.artifacts }}
107107
output-file-name: ${{ github.event.repository.name }}-${{ env.VERSION_STRING }}

.github/workflows/publish-to-spacedock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: get-release-info
3333
id: get-release-info
34-
uses: KSPModdingLibs/KSPBuildTools/.github/actions/get-release-info@main
34+
uses: KSPModdingLibs/KSPBuildTools/.github/actions/get-release-info@0.0.4
3535
with:
3636
release-tag: ${{ inputs.release-tag }}
3737

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set shell:= ['bash', '-c']
22
yaclog:= "uv tool run yaclog@1.6.2"
33

44
pin-workflows tag:
5-
sed -E -H -i ".backup" "s|(- uses: KSPModdingLibs/KSPBuildTools/\.github/actions/\S+@)\S+|\1{{tag}}|g" .github/workflows/*.yml
5+
sed -E -H -i ".backup" "s|(uses: KSPModdingLibs/KSPBuildTools/\.github/actions/\S+@)\S+|\1{{tag}}|g" .github/workflows/*.yml
66

77
release *args:
88
{{yaclog}} release {{args}}

0 commit comments

Comments
 (0)