Skip to content

7.3 Offset Changes

7.3 Offset Changes #53

Workflow file for this run

name: Build FFXIV Zoom Hack
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build the project
run: dotnet build --configuration Release
- name: Publish the project
run: dotnet publish FFXIVZoomHack/FFXIVZoomHack.csproj -c Release -r win-x64 --self-contained false -p:PublishSingleFile=true -p:PublishReadyToRun=true -o ./publish
- name: Upload publish folder as artifact
uses: actions/upload-artifact@v4
with:
name: publish
path: ./publish