Skip to content

Commit

Permalink
add workflow to simulate publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaspie committed Jul 17, 2024
1 parent 4612c2f commit 7d27cfb
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/publish_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
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
# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 7d27cfb

Please sign in to comment.