Skip to content

Update README.md

Update README.md #35

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
name: Build & Deploy
runs-on: ubuntu-latest
environment:
name: ${{github.event_name == 'workflow_dispatch' && 'Production' || ''}}
url: ${{github.event_name == 'workflow_dispatch' && 'https://bfbc2.grzyb.app' || ''}}
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: ${{ secrets.REGISTRY_URL }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/arm64
push: true
tags: ${{ secrets.REGISTRY_URL }}/games/bfbc2/master:${{ github.sha }},${{ secrets.REGISTRY_URL }}/games/bfbc2/master:${{ github.event_name == 'workflow_dispatch' && 'latest' || 'dev' }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Deploy
uses: and-fm/cloudflared-ssh-action@v3
if: github.event_name == 'workflow_dispatch'
with:
host: ${{ secrets.PROD_HOST }}
username: ${{ secrets.PROD_USERNAME }}
private_key_filename: id_ed25519
private_key_value: ${{ secrets.PROD_KEY }}
commands: docker service update --image ${{ secrets.REGISTRY_URL_INT }}/games/bfbc2/master:${{ github.sha }} emu_bfbc2_app