Skip to content
This repository was archived by the owner on Jul 4, 2026. It is now read-only.

improve[servers]: add refresh button (#24) #15

improve[servers]: add refresh button (#24)

improve[servers]: add refresh button (#24) #15

Workflow file for this run

name: GA Build
on:
push:
branches:
- master
jobs:
build-docker-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up QEMU for multi-platform support
uses: docker/setup-qemu-action@v2
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.TOKEN_GITHUB }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
ghcr.io/erfjab/servermanagerbot:ga
ghcr.io/erfjab/servermanagerbot:${{ github.sha }}
ghcr.io/erfjab/servermanagerbot:${{ github.ref_name }}