Skip to content

chore: Bump to 1.0.2 #12

chore: Bump to 1.0.2

chore: Bump to 1.0.2 #12

Workflow file for this run

name: Build
on:
- push
- pull_request
- workflow_dispatch
env:
BUILD_TYPE: Release
DOTNET_VERSION: 8
ASSEMBLY_NAME: Hosihikari.FastElfQuery
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/[email protected]
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: ${{ env.DOTNET_VERSION }}.0.x
- name: Build
run: dotnet publish -c ${{ env.BUILD_TYPE }}
- name: Upload Artifact
uses: actions/[email protected]
with:
name: ${{ env.ASSEMBLY_NAME }}.${{ github.sha }}
path: src/bin