build: drop makefile

It has been a while since we moved to tox. Lets also drop makefile since
it seems to be useless with tox
This commit is contained in:
2023-12-16 16:11:11 +02:00
parent 58e702213d
commit 5fb93bd331
10 changed files with 96 additions and 98 deletions

View File

@ -24,8 +24,13 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
filter: 'Release \d+\.\d+\.\d+'
- name: Install dependencies
uses: ConorMacBride/install-package@v1.1.0
with:
apt: tox
- name: Create archive
run: make archive
run: tox -e archive
env:
VERSION: ${{ steps.version.outputs.VERSION }}
@ -35,7 +40,7 @@ jobs:
body: |
${{ steps.changelog.outputs.compareurl }}
${{ steps.changelog.outputs.changelog }}
files: ahriman-*-src.tar.xz
files: dist/ahriman-*.tar.gz
fail_on_unmatched_files: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}