Browse Source

update docker publish

main
Daniel Gibbs 2 months ago
parent
commit
35f430be96
  1. 110
      .github/workflows/docker-publish.yml

110
.github/workflows/docker-publish.yml

@ -5,14 +5,18 @@ on:
branches: "main" branches: "main"
paths: paths:
- Dockerfile* - Dockerfile*
- entrypoint*
schedule: schedule:
- cron: "0 2 * * 6" - cron: "0 1 * * 6"
jobs: jobs:
build-ubuntu-2404: build-ubuntu-2404:
name: Build Ubuntu 24.04 name: Build Ubuntu 24.04
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
packages: write
contents: read
attestations: write
id-token: write
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -20,43 +24,49 @@ jobs:
- name: Setup QEMU - name: Setup QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/[email protected]
- name: Build
run: docker build -t gameservermanagers/linuxgsm:ubuntu-24.04 -f ./Dockerfile.ubuntu-2404 .
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v3.3.0 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKER_HUB_USERNAME }} username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v3.3.0 uses: docker/login-action@v3
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
gameservermanagers/linuxgsm
ghcr.io/gameservermanagers/linuxgsm
tags: |
latest
ubuntu
ubuntu-24.04
- name: Build and push (Ubuntu 24.04) - name: Build and push (Ubuntu 24.04)
uses: docker/[email protected] uses: docker/build-push-action@v6
with: with:
context: . context: .
file: ./Dockerfile.ubuntu-2404 file: ./Dockerfile.ubuntu-2404
platforms: linux/amd64 platforms: linux/amd64
push: true push: true
tags: | tags: ${{ steps.meta.outputs.tags }}
gameservermanagers/linuxgsm:latest labels: ${{ steps.meta.outputs.labels }}
gameservermanagers/linuxgsm:ubuntu
gameservermanagers/linuxgsm:ubuntu-24.04
ghcr.io/gameservermanagers/linuxgsm:latest
ghcr.io/gameservermanagers/linuxgsm:ubuntu
ghcr.io/gameservermanagers/linuxgsm:ubuntu-24.04
build-ubuntu-2204: build-ubuntu-2204:
name: Build Ubuntu 22.04 name: Build Ubuntu 22.04
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
packages: write
contents: read
attestations: write
id-token: write
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -64,39 +74,50 @@ jobs:
- name: Setup QEMU - name: Setup QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/[email protected]
- name: Build
run: docker build -t gameservermanagers/linuxgsm:ubuntu-22.04 -f ./Dockerfile.ubuntu-2204 .
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v3.3.0 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKER_HUB_USERNAME }} username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v3.3.0 uses: docker/login-action@v3
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
gameservermanagers/linuxgsm
ghcr.io/gameservermanagers/linuxgsm
tags: |
latest
ubuntu
ubuntu-22.04
- name: Build and push (Ubuntu 22.04) - name: Build and push (Ubuntu 22.04)
uses: docker/[email protected] uses: docker/build-push-action@v6
with: with:
context: . context: .
file: ./Dockerfile.ubuntu-2204 file: ./Dockerfile.ubuntu-2204
platforms: linux/amd64 platforms: linux/amd64
push: true push: true
tags: | tags: ${{ steps.meta.outputs.tags }}
gameservermanagers/linuxgsm:ubuntu-22.04 labels: ${{ steps.meta.outputs.labels }}
ghcr.io/gameservermanagers/linuxgsm:ubuntu-22.04
build-ubuntu-2004: build-ubuntu-2004:
name: Build Ubuntu 20.04 name: Build Ubuntu 20.04
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
packages: write
contents: read
attestations: write
id-token: write
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -104,35 +125,40 @@ jobs:
- name: Setup QEMU - name: Setup QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/[email protected]
- name: Build
run: docker build -t gameservermanagers/linuxgsm:ubuntu-20.04 -f ./Dockerfile.ubuntu-2004 .
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v3.3.0 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKER_HUB_USERNAME }} username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v3.3.0 uses: docker/login-action@v3
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
gameservermanagers/linuxgsm
ghcr.io/gameservermanagers/linuxgsm
tags: |
latest
ubuntu
ubuntu-20.04
- name: Build and push (Ubuntu 20.04) - name: Build and push (Ubuntu 20.04)
uses: docker/[email protected] uses: docker/build-push-action@v6
with: with:
context: . context: .
file: ./Dockerfile.ubuntu-2004 file: ./Dockerfile.ubuntu-2004
platforms: linux/amd64 platforms: linux/amd64
push: true push: true
tags: | tags: ${{ steps.meta.outputs.tags }}
gameservermanagers/linuxgsm:ubuntu-20.04 labels: ${{ steps.meta.outputs.labels }}
ghcr.io/gameservermanagers/linuxgsm:ubuntu-20.04
package-cleanup: package-cleanup:
name: Cleanup Old GitHub Packages name: Cleanup Old GitHub Packages

Loading…
Cancel
Save