Skip to content

CI: Using checkout v4 #3

CI: Using checkout v4

CI: Using checkout v4 #3

Workflow file for this run

name: release
on:
push:
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: create package structure
run: |
mkdir -p .debpkg/usr/bin .rpmpkg/usr/bin
cp -p screen-* .debpkg/usr/bin/
cp -p screen-* .rpmpkg/usr/bin/
- uses: jiro4989/build-deb-action@v3
with:
package: screen-save
package_root: .debpkg
maintainer: Simon Walz <[email protected]>
version: ${{ github.ref }} # refs/tags/v*.*.*
arch: 'all'
depends: 'screen'
desc: 'A tool to make screen sessions persistent = survive system reboots.'
homepage: 'https://github.com/simonwalz/screen-save'
- uses: jiro4989/build-rpm-action@v2
with:
summary: 'A tool to make screen sessions persistent = survive system reboots.'
package: screen-save
package_root: .rpmpkg
maintainer: Simon Walz <[email protected]>
version: ${{ github.ref }} # refs/tags/v*.*.*
arch: 'noarch'
desc: 'A tool to make screen sessions persistent = survive system reboots.'