summaryrefslogtreecommitdiffstats
path: root/.github/workflows/rpmbuild.yml
blob: 67e6d83af9a75e9c76414ea788fee5f6fefc18a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: RPM Build

on:
  push:
    branches: [ master ]
    paths-ignore:
      - docs
      - README.md
      - NEWS.md
    tags:
      - '*'

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: Get the release version from the tag
        shell: bash
        run: |
          # Apparently, this is the right way to get a tag name. Really?
          #
          # See: https://github.community/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/32167/highlight/true#M1027
          echo "LNAV_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
          echo "LNAV_VERSION_NUMBER=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
          echo "version is: ${{ env.LNAV_VERSION }}"
          make -C release lnav.spec
      - name: build RPM package
        id: rpm
        uses: tstack/rpmbuild@master
        with:
          spec_file: "release/lnav.spec"

      - name: Upload artifact
        uses: actions/upload-artifact@v1.0.0
        with:
          name: Binary RPM
          path: ${{ steps.rpm.outputs.rpm_dir_path }}

      - name: Push to packagecloud.io
        uses: tstack/upload-packagecloud@main
        if: github.ref_type == 'tag'
        with:
          userrepo: tstack/lnav
          apitoken: ${{ secrets.PACKAGECLOUD_TOKEN }}
          packages: ${{ steps.rpm.outputs.rpm_dir_path }}x86_64
          rpmdists: el/8