mirror of
https://github.com/AsgardEternal/SteamCMDDocker.git
synced 2024-12-28 22:29:19 -06:00
ci: add initial pipeline
This commit is contained in:
parent
199812bdbb
commit
b4f423d26e
38
.github/workflows/main.yml
vendored
Normal file
38
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
name: Docker Image CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- Development
|
||||
pull_request:
|
||||
branches:
|
||||
- Development
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
||||
runs-on: self-hosted
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Login To Registry
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
registry: "${{ vars.DOCKER_REGISTRY_URL }}"
|
||||
username: "${{ secrets.DOCKER_REGISTRY_USER }}"
|
||||
password: "${{ secrets.DOCKER_REGISTRY_PASSWORD }}"
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Build Steamcmd Image
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
push: true
|
||||
cache-from: type=registry,ref=${{ vars.DOCKER_REGISTRY_URL }}/steamcmd:latest
|
||||
cache-to: type=inline
|
||||
tags: "${{ vars.DOCKER_REGISTRY_URL }}/steamcmd:latest"
|
Loading…
Reference in New Issue
Block a user