Spaces:
Sleeping
Sleeping
| name: Release | |
| on: | |
| push: | |
| tags: ["v*"] | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: {python-version: "3.12"} | |
| - run: pip install build | |
| - run: python -m build | |
| - run: git archive --format=zip --output=dist/DataPilot-AI-${GITHUB_REF_NAME}.zip HEAD | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| generate_release_notes: true | |
| files: dist/* | |