-
-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (33 loc) · 1.14 KB
/
Copy pathdeploy.yml
File metadata and controls
41 lines (33 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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