Skip to content

Commit 729d13c

Browse files
authored
updating the upload artifact action (#39)
1 parent c8e3242 commit 729d13c

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/binaries-build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,39 @@ name: Publish binaries
33
on:
44
push:
55
tags:
6-
- 'v*'
7-
6+
- "v*"
7+
88
jobs:
99
publish-binaries:
1010
runs-on: ubuntu-latest
11-
11+
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Setup .NET
1515
uses: actions/setup-dotnet@v3
1616
with:
1717
dotnet-version: 7.0.x
18-
18+
1919
- name: Publish
2020
run: |
2121
dotnet publish ./Quali.Torque.Cli --self-contained -r osx-x64 -c release -o ./osx-x64 -p:PublishSingleFile=true
2222
dotnet publish ./Quali.Torque.Cli --self-contained -r linux-x64 -c release -o ./linux-x64 -p:PublishSingleFile=true
2323
dotnet publish ./Quali.Torque.Cli --self-contained -r win-x64 -c release -o ./win-x64 -p:PublishSingleFile=true
24-
24+
2525
- name: Upload Win Artifact
26-
uses: actions/upload-artifact@v3
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: torque-win-x64
2929
path: ./win-x64
30-
30+
3131
- name: Upload Linux Artifact
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: torque-linux-x64
3535
path: ./linux-x64
36-
36+
3737
- name: Upload Osx Artifact
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: torque-osx-x64
4141
path: ./osx-x64

0 commit comments

Comments
 (0)