Skip to content

bugfix: incorrect branch for automation #2

bugfix: incorrect branch for automation

bugfix: incorrect branch for automation #2

Workflow file for this run

---
name: "pre-release"
on:
push:
branches:
- "main"
env:
DOTNET_VERSION: '8.0.x'
jobs:
pre-release:
name: "Pre Release"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: "Build & test"
run: |
mkdir -p _output
dotnet publish iTimeSlot.csproj -o _out -c Release -f net8.0 --self-contained true -t:BundleApp
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
LICENSE
_output/*.app