Skip to content

Update dependencies #28

Update dependencies

Update dependencies #28

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
paths:
- "src/**"
jobs:
deploy:
strategy:
matrix:
os: [ubuntu-latest]
dotnet: [8.0.301]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run build
run: dotnet run build
- name: Run tests
run: dotnet run test
- name: Bundle releases
run: dotnet run publish
# For now I simply make a continuous build
- name: Release files
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: latest
prerelease: false
title: Continuous Build
files: |
LICENSE.txt
deploy/*