Skip to content

Commit

Permalink
Remove EL7 and EL8 (but not OL8) from build actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeit-internet2 committed Jul 3, 2024
1 parent 923bf5d commit 9476d9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ 'el7', 'el8', 'ol8', 'el9', 'd11', 'd12', 'u18', 'u20', 'u22', 'u24' ]
os: [ 'ol8', 'el9', 'd11', 'd12', 'u18', 'u20', 'u22', 'u24' ]

runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker images
id: build-and-push
if: ${{ matrix.os == 'el7' || matrix.os == 'el8' || matrix.os == 'ol8'|| matrix.os == 'el9' }}
if: ${{ matrix.os == 'ol8'|| matrix.os == 'el9' }}
uses: docker/build-push-action@v3
with:
context: .
Expand Down

0 comments on commit 9476d9b

Please sign in to comment.