Skip to content

Add git status after build #7

Add git status after build

Add git status after build #7

Workflow file for this run

name: Simulate Upload of Python Package
on:
push: # workflow_dispatch:
branches: [git-reset-in-build-step]
env:
UV_SYSTEM_PYTHON: true
jobs:
deploy:
name: Simulate upload release to PyPI
runs-on: ubuntu-latest
# environment:
# name: pypi
# url: https://pypi.org/p/pynxtools
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv pip install build
- name: Build package
run: |
git status
git reset --hard HEAD
git status
python -m build
git status
# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1