Skip to content

forget automatic checkout, is this a good idea ? #5

forget automatic checkout, is this a good idea ?

forget automatic checkout, is this a good idea ? #5

Workflow file for this run

name: Make a .deb package
on: push
jobs:
pkg-deb:
runs-on: ubuntu-latest
name: Deb Package
steps:
- uses: actions/checkout@v3
- name: Check thingy
run: echo "${{github.ref_name}}"
pkg-repm:
name: RPM Package
runs-on: ubuntu-latest
container: fedora:latest
steps:
- name: Install devscripts
run: sudo dnf install -y rpmdevtools rpmlint git
- name: Run RPM script
run: bash pkg/rpm/build-rpm.sh
- name: Upload new rpm
uses: actions/upload-artifact@v4
with:
path: "/$HOME/rpmbuild/RPMS/noarch/maps*.rpm"