Skip to content

Bump lodash from 4.17.21 to 4.17.23 in the npm_and_yarn group across 1 directory #79

Bump lodash from 4.17.21 to 4.17.23 in the npm_and_yarn group across 1 directory

Bump lodash from 4.17.21 to 4.17.23 in the npm_and_yarn group across 1 directory #79

Workflow file for this run

name: package
permissions:
contents: write
on:
workflow_dispatch:
pull_request:
jobs:
package:
runs-on: windows-latest
strategy:
matrix:
rid: [win-x64, linux-x64]
include:
- rid: win-x64
artifact: tf2hud-editor-win64
- rid: linux-x64
artifact: tf2hud-editor-linux
env:
Solution_Name: TF2HUD.Editor.slnx
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup .NET SDK
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore src/HUDEditor/HUDEditor.csproj
- name: Publish for ${{ matrix.rid }}
run: dotnet publish -c Release -r ${{ matrix.rid }} --output ./publish/${{ matrix.rid }} --self-contained true -p:PublishSingleFile=true
working-directory: src/HUDEditor
- name: Upload artifact for ${{ matrix.rid }}
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.artifact }}
path: src/HUDEditor/publish/${{ matrix.rid }}