diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 0301b66..beb024c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -14,9 +14,9 @@ jobs: - name: Package bdist run: make build - name: Package AppImage - run: cd pkg && ./configure && make osc-cli-x86_64.AppImage + run: cd pkg && make osc-cli-x86_64.AppImage - name: Package for Windows - run: cd pkg && ./configure && make osc-cli-x86_64.zip + run: cd pkg && make osc-cli-x86_64.zip - name: Upload artifacts uses: actions/upload-artifact@v2 with: diff --git a/Makefile b/Makefile index b0f886b..9417ecb 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ help: .PHONY: package package: - cd pkg && ./configure && make + cd pkg && make .PHONY: test test: clean test-pre-commit test-pylint test-bandit test-mypy test-int build