Skip to content

Add lfs

Add lfs #6

Workflow file for this run

name: Package and Release
on:
push:
tags:
- '*' # Run on any tag
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true
- name: Make fab_package.sh executable
run: chmod +x fab_package.sh
- name: Run packaging script
run: ./fab_package.sh
- name: Upload SteamInputPlugin.zip as artifact
uses: actions/upload-artifact@v4
with:
name: SteamInputPlugin
path: target/fab/SteamInputPlugin.zip
- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref_name }}
artifacts: target/fab/SteamInputPlugin.zip
bodyFile: "README.md"