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

Rename workflow and slight changes #1

Rename workflow and slight changes

Rename workflow and slight changes #1

Workflow file for this run

name: Create and Upload Release (CI)
on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
build:
strategy:
matrix:
targetplatform: [x64]
#targetplatform: [x86, x64]
runs-on: windows-latest
env:
Project_File: FAFB-PowerShell-Tool\FAFB-PowerShell-Tool.csproj
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Dotnet Build & Publish
run: |
dotnet restore
dotnet build $env:Project_File -c Release -f net8.0-windows -r win-${{ matrix.targetplatform }} --no-restore
dotnet publish $env:Project_File -c Release -f net8.0-windows -r win-${{ matrix.targetplatform }} -o ./publish/FAFB_PowerShell_Tool_${{ matrix.targetplatform }} --no-restore
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: FAFB_PowerShell_Tool_${{ matrix.targetplatform }}
path: publish/FAFB_PowerShell_Tool_${{ matrix.targetplatform }}
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: publish/FAFB_PowerShell_Tool_${{ matrix.targetplatform }}
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}