diff --git a/.github/workflows/gh-actions-pr.yml b/.github/workflows/gh-actions-pr.yml index 08785bce..531f021f 100644 --- a/.github/workflows/gh-actions-pr.yml +++ b/.github/workflows/gh-actions-pr.yml @@ -13,19 +13,21 @@ jobs: include: # only do one Deb file because they're so large - FROM: 'debian:buster' - - FROM: 'opensuse/leap' + - FROM: 'opensuse/leap:15.4' + - FROM: 'opensuse/leap:15.3' + - FROM: 'opensuse/leap:15.2' + - FROM: 'fedora:37' - FROM: 'fedora:36' - FROM: 'fedora:35' - - FROM: 'fedora:34' - - FROM: 'rockylinux/rockylinux' + - FROM: 'rockylinux:9.0' + - FROM: 'rockylinux:8.6' + - FROM: 'rockylinux:8.5' - FROM: 'manjarolinux/base' steps: - name: Checkout repository uses: actions/checkout@v2 with: - # We must fetch at least the immediate parents so that if this is - # a pull request then we can checkout the head. fetch-depth: 2 submodules: false diff --git a/.github/workflows/gh-actions-release.yml b/.github/workflows/gh-actions-release.yml index 16d6c5e6..cc505c17 100644 --- a/.github/workflows/gh-actions-release.yml +++ b/.github/workflows/gh-actions-release.yml @@ -21,29 +21,32 @@ jobs: # only build one Deb File b/c they're so large - FROM: 'debian:buster' ARTIFACT_EXT: 'deb' - - FROM: 'opensuse/leap' + - FROM: 'opensuse/leap:15.4' + ARTIFACT_EXT: 'rpm' + - FROM: 'opensuse/leap:15.3' + ARTIFACT_EXT: 'rpm' + - FROM: 'opensuse/leap:15.2' + ARTIFACT_EXT: 'rpm' + - FROM: 'fedora:37' ARTIFACT_EXT: 'rpm' - FROM: 'fedora:36' ARTIFACT_EXT: 'rpm' - FROM: 'fedora:35' ARTIFACT_EXT: 'rpm' - - FROM: 'fedora:34' + - FROM: 'rockylinux:9.0' ARTIFACT_EXT: 'rpm' - - FROM: 'rockylinux/rockylinux' + - FROM: 'rockylinux:8.6' + ARTIFACT_EXT: 'rpm' + - FROM: 'rockylinux:8.5' ARTIFACT_EXT: 'rpm' steps: - name: Checkout repository uses: actions/checkout@v2 with: - # We must fetch at least the immediate parents so that if this is - # a pull request then we can checkout the head. fetch-depth: 2 submodules: false - # where in a pull request we want to move to the head of the PR and not be at the - # merge commit; here we want to be at the HEAD of the ref - - name: Extract tag name etc shell: bash run: |