Skip to content

Commit 4304870

Browse files
committed
fix build
1 parent e805a9f commit 4304870

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
yum install -y rpm-build rpmlint make rsync
1919
- name: build rpm
2020
run: |
21-
make rpm
21+
mkdir build
22+
cd build
23+
make rpm -f ../Makefile
2224
rpmlint --file .rpmlint.ini build/RPMS/noarch/*.rpm
2325
- name: Upload rpms
2426
uses: actions/upload-artifact@v3
@@ -40,7 +42,9 @@ jobs:
4042
dnf install -y rpm-build rpmlint make rsync systemd-rpm-macros
4143
- name: build rpm
4244
run: |
43-
make clean rpm
45+
mkdir build
46+
cd build
47+
make rpm -f ../Makefile
4448
rpmlint --file .rpmlint.ini build/RPMS/noarch/*.rpm
4549
- name: Upload RPMs
4650
uses: actions/upload-artifact@v3

.github/workflows/check-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
check-modified-files-only: "yes"
2626
use-quiet-mode: "yes"
2727
use-verbose-mode: "yes"
28-
base-branch: "main"
28+
base-branch: "master"

0 commit comments

Comments
 (0)