Skip to content

Commit

Permalink
Merge pull request #37 from maxkratz/feature/migrate-2023-to-build-ma…
Browse files Browse the repository at this point in the history
…trix

Moves the build-and-push job for 2023 back into the build matrix
  • Loading branch information
maxkratz committed May 18, 2024
2 parents 5d87e8b + 5944f9e commit 360e15a
Showing 1 changed file with 1 addition and 30 deletions.
31 changes: 1 addition & 30 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,36 +37,7 @@ jobs:
timeout-minutes: 1440
strategy:
matrix:
year: [2017, 2018, 2019, 2020, 2021, 2022]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build image
uses: docker/build-push-action@v5
with:
context: ./${{ matrix.year }}
push: true
tags: maxkratz/texlive:${{ matrix.year }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
timeout-minutes: 1440

build-and-push-image-2023:
# Use a self-hosted runner to circumvent the small storage size of GitHub-hosted runners
runs-on: [self-hosted]
needs: [build-and-push-base]
timeout-minutes: 1440
strategy:
matrix:
year: [2023]
year: [2017, 2018, 2019, 2020, 2021, 2022, 2023]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 360e15a

Please sign in to comment.