1 changed files with 32 additions and 61 deletions
@ -74,13 +74,7 @@ jobs: |
|||||
- name: Setup QEMU |
- name: Setup QEMU |
||||
uses: docker/setup-qemu-action@v3 |
uses: docker/setup-qemu-action@v3 |
||||
|
|
||||
- name: Setup Docker Buildx |
- name: Login to Docker Hub |
||||
uses: docker/setup-buildx-action@v3 |
|
||||
|
|
||||
- name: Build |
|
||||
run: docker build -t gameservermanagers/steamcmd:ubuntu-22.04 -f ./Dockerfile.ubuntu-2204 . |
|
||||
|
|
||||
- name: Login to DockerHub |
|
||||
uses: docker/login-action@v3 |
uses: docker/login-action@v3 |
||||
with: |
with: |
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }} |
username: ${{ secrets.DOCKER_HUB_USERNAME }} |
||||
@ -93,6 +87,18 @@ jobs: |
|||||
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/steamcmd |
||||
|
ghcr.io/gameservermanagers/steamcmd |
||||
|
tags: | |
||||
|
latest |
||||
|
ubuntu |
||||
|
ubuntu-22.04 |
||||
|
|
||||
- name: Build and push (Ubuntu 22.04) |
- name: Build and push (Ubuntu 22.04) |
||||
uses: docker/build-push-action@v6 |
uses: docker/build-push-action@v6 |
||||
with: |
with: |
||||
@ -100,9 +106,9 @@ jobs: |
|||||
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/steamcmd:ubuntu-22.04 |
labels: ${{ steps.meta.outputs.labels }} |
||||
ghcr.io/gameservermanagers/steamcmd:ubuntu-22.04 |
|
||||
|
|
||||
build-ubuntu-2004: |
build-ubuntu-2004: |
||||
name: Build Ubuntu 20.04 |
name: Build Ubuntu 20.04 |
||||
@ -119,14 +125,8 @@ jobs: |
|||||
- name: Setup QEMU |
- name: Setup QEMU |
||||
uses: docker/setup-qemu-action@v3 |
uses: docker/setup-qemu-action@v3 |
||||
|
|
||||
- name: Setup Docker Buildx |
- name: Login to Docker Hub |
||||
uses: docker/setup-buildx-action@v3 |
uses: docker/login-action@v3 |
||||
|
|
||||
- name: Build |
|
||||
run: docker build -t gameservermanagers/steamcmd:ubuntu-20.04 -f ./Dockerfile.ubuntu-2004 . |
|
||||
|
|
||||
- name: Login to DockerHub |
|
||||
uses: docker/[email protected] |
|
||||
with: |
with: |
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }} |
username: ${{ secrets.DOCKER_HUB_USERNAME }} |
||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} |
||||
@ -138,60 +138,31 @@ jobs: |
|||||
username: ${{ github.actor }} |
username: ${{ github.actor }} |
||||
password: ${{ secrets.GITHUB_TOKEN }} |
password: ${{ secrets.GITHUB_TOKEN }} |
||||
|
|
||||
- name: Build and push (Ubuntu 20.04) |
- name: Extract metadata (tags, labels) for Docker |
||||
uses: docker/build-push-action@v6 |
id: meta |
||||
|
uses: docker/metadata-action@v5 |
||||
with: |
with: |
||||
context: . |
images: | |
||||
file: ./Dockerfile.ubuntu-2004 |
gameservermanagers/steamcmd |
||||
platforms: linux/amd64 |
ghcr.io/gameservermanagers/steamcmd |
||||
push: true |
|
||||
tags: | |
tags: | |
||||
gameservermanagers/steamcmd:ubuntu-20.04 |
latest |
||||
ghcr.io/gameservermanagers/steamcmd:ubuntu-20.04 |
ubuntu |
||||
|
ubuntu-20.04 |
||||
build-ubuntu-1804: |
|
||||
name: Build Ubuntu 18.04 |
|
||||
runs-on: ubuntu-latest |
|
||||
steps: |
|
||||
- name: Checkout |
|
||||
uses: actions/checkout@v4 |
|
||||
|
|
||||
- name: Setup QEMU |
|
||||
uses: docker/setup-qemu-action@v3 |
|
||||
|
|
||||
- name: Setup Docker Buildx |
|
||||
uses: docker/setup-buildx-action@v3 |
|
||||
|
|
||||
- name: Build |
|
||||
run: docker build -t gameservermanagers/steamcmd:ubuntu-18.04 -f ./Dockerfile.ubuntu-1804 . |
|
||||
|
|
||||
- name: Login to DockerHub |
|
||||
uses: docker/[email protected] |
|
||||
with: |
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }} |
|
||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} |
|
||||
|
|
||||
- name: Login to GitHub Container Registry |
- name: Build and push (Ubuntu 20.04) |
||||
uses: docker/login-action@v3 |
|
||||
with: |
|
||||
registry: ghcr.io |
|
||||
username: ${{ github.actor }} |
|
||||
password: ${{ secrets.GITHUB_TOKEN }} |
|
||||
|
|
||||
- name: Build and push (Ubuntu 18.04) |
|
||||
uses: docker/build-push-action@v6 |
uses: docker/build-push-action@v6 |
||||
with: |
with: |
||||
context: . |
context: . |
||||
file: ./Dockerfile.ubuntu-1804 |
file: ./Dockerfile.ubuntu-2004 |
||||
platforms: linux/amd64 |
platforms: linux/amd64 |
||||
push: true |
push: true |
||||
tags: | |
tags: ${{ steps.meta.outputs.tags }} |
||||
gameservermanagers/steamcmd:ubuntu-18.04 |
labels: ${{ steps.meta.outputs.labels }} |
||||
ghcr.io/gameservermanagers/steamcmd:ubuntu-18.04 |
|
||||
|
|
||||
package-cleanup: |
package-cleanup: |
||||
name: Cleanup Old GitHub Packages |
name: Cleanup Old GitHub Packages |
||||
needs: [ build-ubuntu-1804, build-ubuntu-2004, build-ubuntu-2204, build-ubuntu-2404 ] |
needs: [ build-ubuntu-2004, build-ubuntu-2204, build-ubuntu-2404 ] |
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
steps: |
steps: |
||||
- name: Delete Package Versions |
- name: Delete Package Versions |
||||
|
Loading…
Reference in new issue