Skip to content

Bump docker/login-action from 3.0.0 to 3.1.0 #66

Bump docker/login-action from 3.0.0 to 3.1.0

Bump docker/login-action from 3.0.0 to 3.1.0 #66

name: linux/amd64
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
repository_dispatch: # Allows action to be triggered via webhook
workflow_dispatch: # Allows action to be run manually from the Actions tab
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up QEMU
uses: docker/[email protected]
- name: Pull Latest Linux Base Image
run: docker pull lacledeslan/gamesvr-dods
- name: Build Linux Image
uses: docker/[email protected]
with:
context: .
file: ./linux.Dockerfile
tags: |
dodsleague/dods-competitive:latest
build-args: |
BUILDNODE=GitHub (Run Number: ${{ github.run_number }} Run ID: ${{ github.run_id }})
SOURCE_COMMIT=${{ github.sha }}
no-cache: true
- name: Test Linux Image
run: docker run --rm dodsleague/dods-competitive:latest /app/ll-tests/dods-competitive.sh
- name: Login to DockerHub
if: ${{ github.event_name != 'pull_request' }}
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push to Docker HUB
if: ${{ github.event_name != 'pull_request' }}
run: docker push dodsleague/dods-competitive:latest