Compare commits

...

3 Commits
v0.2.3 ... main

Author SHA1 Message Date
Gordon Goldbach b1593f0094
Update readme.md 2024-03-20 09:31:26 +01:00
MasterGordon 5d0a0fa622 fixed artifact upload 2023-01-04 15:35:21 +01:00
MasterGordon 94f353af5b updated pipeline 2023-01-04 15:32:15 +01:00
2 changed files with 9 additions and 5 deletions

View File

@ -22,11 +22,18 @@ jobs:
- name: Build - name: Build
run: dotnet build --no-restore run: dotnet build --no-restore
- name: Publish - name: Publish
run: dotnet publish -r linux-x64 --self-contained run: cd Mine2d && make
- name: Upload a Build Artifact - name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0 uses: actions/upload-artifact@v3.1.0
with: with:
# Artifact name # Artifact name
name: Linux build name: Linux build
# A file, directory or wildcard pattern that describes what to upload # A file, directory or wildcard pattern that describes what to upload
path: Mine2d/bin/Debug/net6.0/linux-x64/publish/Mine2d path: Mine2d/build/linux-64.zip
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
with:
# Artifact name
name: Windows build
# A file, directory or wildcard pattern that describes what to upload
path: Mine2d/build/win-64.zip

View File

@ -9,9 +9,6 @@
### Run the Project ### Run the Project
```bash ```bash
# Run the Server Player opens on port 42069
dotnet run --host
# Run the Client Player
dotnet run dotnet run
``` ```