Skip to content

remove bad self import #54

remove bad self import

remove bad self import #54

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
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