Skip to content

Implemented Icons for weapons, items and functions to show in the map… #23

Implemented Icons for weapons, items and functions to show in the map…

Implemented Icons for weapons, items and functions to show in the map… #23

Workflow file for this run

name: .NET Desktop CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x' # Replace with the .NET version your project targets
- name: Build Solution
run: dotnet build --configuration Release
- name: Run Tests
run: dotnet test
- name: Publish Application
run: dotnet publish --configuration Release -o ./publish
- name: Upload Published App as Artifact
uses: actions/upload-artifact@v2
with:
name: published-app
path: ./publish/**