1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Update actions

This commit is contained in:
Robert 2024-03-01 22:35:29 +01:00
parent ba3838489f
commit 765f413326
3 changed files with 11 additions and 11 deletions

View File

@ -12,9 +12,9 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v2 uses: actions/setup-dotnet@v4
with: with:
dotnet-version: "8.0.x" dotnet-version: "8.0.x"
- name: Setup DocFX - name: Setup DocFX
@ -26,7 +26,7 @@ jobs:
- name: Build DocFX - name: Build DocFX
run: docfx docfx/docfx_project/docfx.json run: docfx docfx/docfx_project/docfx.json
- name: Upload to FTP - name: Upload to FTP
uses: SamKirkland/FTP-Deploy-Action@4.3.2 uses: maverage/FTP-Deploy-Action@4.3.5
with: with:
server: www360.your-server.de server: www360.your-server.de
protocol: ftps protocol: ftps

View File

@ -13,7 +13,7 @@ jobs:
version-number: ${{ steps.get-version.outputs.version-number }} version-number: ${{ steps.get-version.outputs.version-number }}
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Get Version String - name: Get Version String
@ -49,16 +49,16 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- name: Checkout Artemis - name: Checkout Artemis
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
path: Artemis path: Artemis
- name: Checkout Plugins - name: Checkout Plugins
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
repository: Artemis-RGB/Artemis.Plugins repository: Artemis-RGB/Artemis.Plugins
path: Artemis.Plugins path: Artemis.Plugins
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v2 uses: actions/setup-dotnet@v4
with: with:
dotnet-version: '8.0.x' dotnet-version: '8.0.x'
- name: Publish Artemis - name: Publish Artemis
@ -73,7 +73,7 @@ jobs:
} }
shell: pwsh shell: pwsh
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: artemis-${{ matrix.rid }}-${{ needs.version.outputs.version-number }} name: artemis-${{ matrix.rid }}-${{ needs.version.outputs.version-number }}
path: build/${{ matrix.rid }} path: build/${{ matrix.rid }}

View File

@ -13,7 +13,7 @@ jobs:
version-number: ${{ steps.get-version.outputs.version-number }} version-number: ${{ steps.get-version.outputs.version-number }}
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Get Version String - name: Get Version String
@ -35,11 +35,11 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v2 uses: actions/setup-dotnet@v4
with: with:
dotnet-version: '8.0.x' dotnet-version: '8.0.x'
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Pack Artemis.Core - name: Pack Artemis.Core
run: dotnet pack -c Release -p:Version=${{ needs.version.outputs.version-number }} -p:BuildingNuget=True src/Artemis.Core/Artemis.Core.csproj run: dotnet pack -c Release -p:Version=${{ needs.version.outputs.version-number }} -p:BuildingNuget=True src/Artemis.Core/Artemis.Core.csproj
- name: Pack Artemis.UI.Shared - name: Pack Artemis.UI.Shared