Skip to content

Commit

Permalink
Make it good looking
Browse files Browse the repository at this point in the history
  • Loading branch information
RenNagasaki committed Feb 27, 2025
1 parent 1c2d916 commit 31de6ed
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ jobs:
build:

runs-on: ubuntu-latest
name: Build Application
strategy:
matrix:
dotnet-version: [ '8.0.x' ]

steps:
- name: checkout all the submodules
- name: Checkout all the submodules
uses: actions/checkout@v2
with:
submodules: recursive
Expand All @@ -34,4 +35,15 @@ jobs:
run: dotnet test --no-build --verbosity normal
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
- name: Publish ${{ matrix.dotnet-version }}
run: dotnet publish "Echokraut Tools/Echokraut Tools.csproj" -c Release -o release --nologo
run: dotnet publish "Echokraut Tools/Echokraut Tools.csproj" -c Release -o release --nologo
- name: Upload Build Artifact
uses: actions/upload-artifact@v2
with:
name: Application_Artifact
path: "/home/runner/work/Echokraut Tools/Echokraut Tools/release/"
- name: Commit release to GitHub Pages
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: release
FOLDER: release

0 comments on commit 31de6ed

Please sign in to comment.