Browse Source
- Updated the schedule for the "push" event to run every Saturday at 3 AM - Renamed the job from "ubuntu-2204" to "build-ubuntu-2204" - Renamed the job from "ubuntu-2004" to "build-ubuntu-2004" - Renamed the job from "ubuntu-1804" to "build-ubuntu-1804"pull/22/head
1 changed files with 36 additions and 17 deletions
@ -3,35 +3,42 @@ name: Docker Publish |
|||||
on: |
on: |
||||
workflow_dispatch: |
workflow_dispatch: |
||||
push: |
push: |
||||
branches: ["main", "master"] |
branches: "main" |
||||
|
paths: |
||||
|
- Dockerfile* |
||||
schedule: |
schedule: |
||||
- cron: "0 23 * * *" |
- cron: "0 2 * * 6" |
||||
|
|
||||
jobs: |
jobs: |
||||
ubuntu-2204: |
build-ubuntu-2204: |
||||
|
name: Build Ubuntu 22.04 |
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
steps: |
steps: |
||||
- name: Checkout |
- name: Checkout |
||||
uses: actions/checkout@v3 |
uses: actions/checkout@v3 |
||||
|
|
||||
- name: Setup QEMU |
- name: Setup QEMU |
||||
uses: docker/setup-qemu-action@v2 |
uses: docker/setup-qemu-action@v2 |
||||
|
|
||||
- name: Setup Docker Buildx |
- name: Setup Docker Buildx |
||||
uses: docker/[email protected] |
uses: docker/[email protected] |
||||
|
|
||||
- name: Build |
- name: Build |
||||
run: docker build -t gameservermanagers/linuxgsm:ubuntu-22.04 -f ./Dockerfile.ubuntu-2204 . |
run: docker build -t gameservermanagers/linuxgsm:ubuntu-22.04 -f ./Dockerfile.ubuntu-2204 . |
||||
#- name: Test |
|
||||
# run: docker run --rm gameservermanagers/linuxgsm:ubuntu-22.04 ./linuxgsm.sh list |
|
||||
- name: Login to DockerHub |
- name: Login to DockerHub |
||||
uses: docker/[email protected] |
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 }} |
||||
|
|
||||
- name: Login to GitHub Container Registry |
- name: Login to GitHub Container Registry |
||||
uses: docker/[email protected] |
uses: docker/[email protected] |
||||
with: |
with: |
||||
registry: ghcr.io |
registry: ghcr.io |
||||
username: ${{ github.actor }} |
username: ${{ github.actor }} |
||||
password: ${{ secrets.GITHUB_TOKEN }} |
password: ${{ secrets.GITHUB_TOKEN }} |
||||
|
|
||||
- name: Build and push (Ubuntu 22.04) |
- name: Build and push (Ubuntu 22.04) |
||||
uses: docker/[email protected] |
uses: docker/[email protected] |
||||
with: |
with: |
||||
@ -41,34 +48,41 @@ jobs: |
|||||
push: true |
push: true |
||||
tags: | |
tags: | |
||||
gameservermanagers/linuxgsm:latest |
gameservermanagers/linuxgsm:latest |
||||
|
gameservermanagers/linuxgsm:ubuntu |
||||
gameservermanagers/linuxgsm:ubuntu-22.04 |
gameservermanagers/linuxgsm:ubuntu-22.04 |
||||
ghcr.io/gameservermanagers/linuxgsm:latest |
ghcr.io/gameservermanagers/linuxgsm:latest |
||||
|
ghcr.io/gameservermanagers/linuxgsm:ubuntu |
||||
ghcr.io/gameservermanagers/linuxgsm:ubuntu-22.04 |
ghcr.io/gameservermanagers/linuxgsm:ubuntu-22.04 |
||||
|
|
||||
ubuntu-2004: |
build-ubuntu-2004: |
||||
|
name: Build Ubuntu 20.04 |
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
steps: |
steps: |
||||
- name: Checkout |
- name: Checkout |
||||
uses: actions/checkout@v3 |
uses: actions/checkout@v3 |
||||
|
|
||||
- name: Setup QEMU |
- name: Setup QEMU |
||||
uses: docker/setup-qemu-action@v2 |
uses: docker/setup-qemu-action@v2 |
||||
|
|
||||
- name: Setup Docker Buildx |
- name: Setup Docker Buildx |
||||
uses: docker/[email protected] |
uses: docker/[email protected] |
||||
|
|
||||
- name: Build |
- name: Build |
||||
run: docker build -t gameservermanagers/linuxgsm:ubuntu-20.04 -f ./Dockerfile.ubuntu-2004 . |
run: docker build -t gameservermanagers/linuxgsm:ubuntu-20.04 -f ./Dockerfile.ubuntu-2004 . |
||||
#- name: Test |
|
||||
# run: docker run --rm gameservermanagers/linuxgsm:ubuntu-20.04 ./linuxgsm.sh list |
|
||||
- name: Login to DockerHub |
- name: Login to DockerHub |
||||
uses: docker/[email protected] |
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 }} |
||||
|
|
||||
- name: Login to GitHub Container Registry |
- name: Login to GitHub Container Registry |
||||
uses: docker/[email protected] |
uses: docker/[email protected] |
||||
with: |
with: |
||||
registry: ghcr.io |
registry: ghcr.io |
||||
username: ${{ github.actor }} |
username: ${{ github.actor }} |
||||
password: ${{ secrets.GITHUB_TOKEN }} |
password: ${{ secrets.GITHUB_TOKEN }} |
||||
|
|
||||
- name: Build and push (Ubuntu 20.04) |
- name: Build and push (Ubuntu 20.04) |
||||
uses: docker/[email protected] |
uses: docker/[email protected] |
||||
with: |
with: |
||||
@ -80,30 +94,35 @@ jobs: |
|||||
gameservermanagers/linuxgsm:ubuntu-20.04 |
gameservermanagers/linuxgsm:ubuntu-20.04 |
||||
ghcr.io/gameservermanagers/linuxgsm:ubuntu-20.04 |
ghcr.io/gameservermanagers/linuxgsm:ubuntu-20.04 |
||||
|
|
||||
ubuntu-1804: |
build-ubuntu-1804: |
||||
|
name: Build Ubuntu 18.04 |
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
steps: |
steps: |
||||
- name: Checkout |
- name: Checkout |
||||
uses: actions/checkout@v3 |
uses: actions/checkout@v3 |
||||
|
|
||||
- name: Setup QEMU |
- name: Setup QEMU |
||||
uses: docker/setup-qemu-action@v2 |
uses: docker/setup-qemu-action@v2 |
||||
|
|
||||
- name: Setup Docker Buildx |
- name: Setup Docker Buildx |
||||
uses: docker/[email protected] |
uses: docker/[email protected] |
||||
|
|
||||
- name: Build |
- name: Build |
||||
run: docker build -t gameservermanagers/linuxgsm:ubuntu-18.04 -f ./Dockerfile.ubuntu-1804 . |
run: docker build -t gameservermanagers/linuxgsm:ubuntu-18.04 -f ./Dockerfile.ubuntu-1804 . |
||||
#- name: Test |
|
||||
# run: docker run --rm gameservermanagers/linuxgsm:ubuntu-18.04 ./linuxgsm.sh list |
|
||||
- name: Login to DockerHub |
- name: Login to DockerHub |
||||
uses: docker/[email protected] |
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 }} |
||||
|
|
||||
- name: Login to GitHub Container Registry |
- name: Login to GitHub Container Registry |
||||
uses: docker/[email protected] |
uses: docker/[email protected] |
||||
with: |
with: |
||||
registry: ghcr.io |
registry: ghcr.io |
||||
username: ${{ github.actor }} |
username: ${{ github.actor }} |
||||
password: ${{ secrets.GITHUB_TOKEN }} |
password: ${{ secrets.GITHUB_TOKEN }} |
||||
|
|
||||
- name: Build and push (Ubuntu 18.04) |
- name: Build and push (Ubuntu 18.04) |
||||
uses: docker/[email protected] |
uses: docker/[email protected] |
||||
with: |
with: |
||||
|
Loading…
Reference in new issue