Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
acidicMercury8 committed Jan 27, 2024
1 parent 6472f6e commit cad6efc
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/build-launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v3.0.3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'

Expand All @@ -65,7 +65,7 @@ jobs:
--no-restore
- name: Upload binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: launcher-avalonia-net7.0-${{ matrix.config }}-${{ github.sha }}
path: bin/${{ matrix.config }}/
Expand All @@ -88,12 +88,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v3.0.3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'

Expand All @@ -108,7 +108,7 @@ jobs:
--no-restore
- name: Upload binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: launcher-wpf-net7.0-${{ matrix.config }}-${{ github.sha }}
path: bin/${{ matrix.config }}/
Expand All @@ -131,12 +131,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v3.0.3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'

Expand All @@ -151,7 +151,7 @@ jobs:
--no-restore
- name: Upload binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: hasher-cli-net7.0-${{ matrix.config }}-${{ github.sha }}
path: bin/${{ matrix.config }}/
Expand All @@ -174,12 +174,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v3.0.3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'

Expand All @@ -194,7 +194,7 @@ jobs:
--no-restore
- name: Upload binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: updater-cli-net7.0-${{ matrix.config }}-${{ github.sha }}
path: bin/${{ matrix.config }}/
Expand All @@ -220,12 +220,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v3.0.3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'

Expand Down Expand Up @@ -260,13 +260,13 @@ jobs:
"%ProgramFiles(x86)%\Inno Setup 6\iscc.exe" src\ImeSense.Launchers.Belarus.Setup\Setup.iss
- name: Upload launcher
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sblauncher-${{ matrix.runtime }}-${{ github.sha }}
path: bin/Release/${{ matrix.runtime }}/publish/

- name: Upload installer
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.runtime == 'win-x86'
with:
name: sbinstaller-${{ github.sha }}
Expand Down

0 comments on commit cad6efc

Please sign in to comment.