remove unsupported RT 4.2 #178
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build and Push Docker Image | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '44 4 * * 0' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
id-token: write | |
packages: write | |
jobs: | |
build: | |
name: RT ${{ matrix.version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '4.4' | |
- '5.0' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
netsandbox/request-tracker | |
ghcr.io/netsandbox/request-tracker | |
tags: | | |
type=raw,value=${{ matrix.version }} | |
type=raw,value=latest,enable=${{ matrix.version == '5.0' }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Setup 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: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
id: build-and-push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ${{ matrix.version }}/ | |
file: ${{ matrix.version }}/Dockerfile | |
no-cache: true | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
pull: true | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Install cosign | |
uses: sigstore/cosign-installer@v3 | |
- name: Sign the published Docker images | |
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign --yes {}@${{ steps.build-and-push.outputs.digest }} | |
- name: Update Docker Hub description | |
if: ${{ matrix.version == '5.0' }} | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
repository: netsandbox/request-tracker | |
short-description: ${{ github.event.repository.description }} | |
- uses: actions/delete-package-versions@v5 | |
if: ${{ matrix.version == '5.0' }} | |
with: | |
package-name: request-tracker | |
package-type: container | |
min-versions-to-keep: 30 |