Skip to content

Commit 0a915e3

Browse files
chore: upgradle workflow
1 parent 2b3033f commit 0a915e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v3
1818

1919
- name: Add MSBuild to PATH
20-
uses: microsoft/setup-msbuild@v1.0.2
20+
uses: microsoft/setup-msbuild@v1
2121

2222
- name: Setup Java
2323
uses: actions/setup-java@v3
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Get version from tag
2929
id: get-version
30-
run: echo ("::set-output name=version::" + $env:GITHUB_REF.replace('refs/tags/v', ''))
30+
run: echo ("version=" + $env:GITHUB_REF.replace('refs/tags/v', '')) >> $env:GITHUB_OUTPUT
3131

3232
- name: Install cert
3333
shell: pwsh
@@ -83,7 +83,7 @@ jobs:
8383
Compress-Archive -Path ".\TextECodeCLI\publish\TextECode_${{ steps.get-version.outputs.version }}_SelfContained_x86" -DestinationPath "${{ runner.temp }}\TextECode_${{ steps.get-version.outputs.version }}_SelfContained_x86.zip"
8484
8585
- name: Release (GitHub)
86-
uses: softprops/action-gh-release@v1
86+
uses: softprops/action-gh-release@v0.1.13
8787
with:
8888
files: |
8989
${{ runner.temp }}\TextECode_${{ steps.get-version.outputs.version }}_Appx.zip

0 commit comments

Comments
 (0)