Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Add files via upload #29

Add files via upload

Add files via upload #29

Workflow file for this run

name: Publish 🚀
on:
workflow_dispatch:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Restore
run: dotnet restore ./CurrentTimeService.sln
- name: Build
run: dotnet build ./CurrentTimeService.sln --configuration Release --no-restore
- name: publish
run: dotnet publish ./CurrentTimeService.sln --configuration Release --no-build