index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan M. Taylor <dylan@dylanmtaylor.com> | 2022-02-12 16:29:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 22:29:12 +0100 |
commit | 532f0fdc3a8a2deb655182b4acf946f715f8e636 (patch) | |
tree | 055037609f3ae1d7dde5afa432a18e03b84ce626 /.github/workflows/python-build.yml | |
parent | c3310d01b76c4adc7194cd9300bf0a12595a355f (diff) |
-rw-r--r-- | .github/workflows/python-build.yml | 26 |
diff --git a/.github/workflows/python-build.yml b/.github/workflows/python-build.yml new file mode 100644 index 00000000..6196f9d8 --- /dev/null +++ b/.github/workflows/python-build.yml @@ -0,0 +1,26 @@ +# This workflow will build Python packages on every commit. + +name: Build archinstall + +on: [ push, pull_request ] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build twine + - name: Build archinstall + run: | + python -m build + - uses: actions/upload-artifact@v2 + with: + name: archinstall + path: dist/* |