Add lfs #6
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |