Skip to content

fixed workflow

fixed workflow #17

Workflow file for this run

name: Release
on:
release:
types: [published]
workflow_dispatch:
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
- name: Setup Velopack
run: |
dotnet tool update -g vpk

Check failure on line 20 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: Build
run: |
dotnet publish -c Release --no-self-contained -r win-x64 -o publish -p:PublishTrimmed=true
# vpk download http --url https://github.com/rgbcraft/NewRGBLauncher/releases/latest
vpk pack -u NewRGB -o releases -p publish -f net8-x64-desktop -v ${{github.ref_name}}
- name: Upload
uses: actions/upload-artifact@v4
with:
name: NewRGB-Win
path: releases/*
- name: Publish in release
uses: softprops/action-gh-release@v2
if: github.ref_type == 'tag'
with:
files: |
releases/*
token: ${{ secrets.GITHUB_TOKEN }}
build-linux:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup Velopack
run: |
sudo add-apt-repository universe
sudo apt install libfuse2
dotnet tool update -g vpk
- name: Build
run: |
dotnet publish -c Release --self-contained -r linux-x64 -o publish -p:PublishTrimmed=True
# vpk download http --url https://github.com/rgbcraft/NewRGBLauncher/releases/latest
vpk pack -u NewRGB -v "${{github.ref_name}}" -o "release" -p "publish"
- name: Upload
uses: actions/upload-artifact@v4
with:
name: NewRGB-Linux
path: releases/*
- name: Publish in release
uses: softprops/action-gh-release@v2
if: github.ref_type == 'tag'
with:
files: |
releases/*
token: ${{ secrets.GITHUB_TOKEN }}