Skip to content

Commit

Permalink
Update packaging invocation
Browse files Browse the repository at this point in the history
No need to run configure anymore in this context.

Signed-off-by: Jérôme Jutteau <jerome.jutteau@outscale.com>
  • Loading branch information
jerome-jutteau committed Nov 4, 2021
1 parent 6482eff commit c67d474
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c67d474

Please sign in to comment.