forget automatic checkout, is this a good idea ? #5
Workflow file for this run
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
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" |