-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from CESNET/release-on-copr
ci - upload RPM automatically to copr
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: release package on copr | ||
|
||
on: | ||
push: | ||
branches: | ||
- release | ||
|
||
jobs: | ||
release-package-on-copr: | ||
runs-on: ubuntu-latest | ||
container: oraclelinux:8 | ||
steps: | ||
- name: Install dependencies | ||
run: | | ||
dnf install -y dnf-plugins-core epel-release | ||
dnf -y copr enable @CESNET/NEMEA | ||
dnf install -y make gcc-c++ cmake3 git rpm-build fuse3-devel copr-cli | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Mark github workspace as safe | ||
run: git config --system --add safe.directory $PWD | ||
- name: make rpm | ||
run: make rpm | ||
- name: Create copr config | ||
run: | | ||
mkdir ~/.config | ||
echo "${{ secrets.COPR_CONFIG }}" >> ~/.config/copr | ||
- name: Upload SRPM to copr | ||
run: | | ||
copr build @CESNET/NEMEA build/pkg/rpm/rpmbuild/SRPMS/* | ||
copr build @CESNET/NEMEA-stable build/pkg/rpm/rpmbuild/SRPMS/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters