Testing missing dependency #57
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow will upload a Python Package when a release is created | |
| # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
| name: Upload archinstall to PyPi | |
| # on: | |
| # release: | |
| # types: [ published ] | |
| on: [ push, pull_request ] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: archlinux/archlinux:latest | |
| options: --privileged | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Prepare arch | |
| run: | | |
| pacman-key --init | |
| pacman --noconfirm -Sy archlinux-keyring | |
| pacman --noconfirm -Syyu | |
| pacman --noconfirm -Sy python python-uv python-setuptools python-pip python-pyparted python-pydantic | |
| - name: Build archinstall | |
| run: | | |
| uv build --no-build-isolation --wheel | |
| - name: Publish archinstall to PyPi | |
| run: | | |
| uv publish --trusted-publishing always |