Skip to content

fix: update readme to refer to cmd rather than bat files #39

fix: update readme to refer to cmd rather than bat files

fix: update readme to refer to cmd rather than bat files #39

Workflow file for this run

name: Package files
on: [push]
jobs:
package:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Git describe
id: ghd
uses: proudust/gh-describe@v1
- shell: bash
run: mkdir -p dist
- uses: robinraju/release-downloader@v1.8
with:
repository: trumank/uesave-rs
tag: v0.3.0
fileName: uesave-x86_64-pc-windows-msvc.zip
out-file-path: dist/uesave
extract: true
- shell: bash
run: |
rm dist/uesave/uesave-x86_64-pc-windows-msvc.zip
cp LICENSE dist/
cp README.md dist/
cp *.py dist/
cp -r lib dist/
cp convenience_tools/* dist/
cd dist
zip -r ../palworld-save-tools-windows-${{steps.ghd.outputs.describe}}.zip *
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: palworld-save-tools-windows-${{steps.ghd.outputs.describe}}.zip
generate_release_notes: true