mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-10 01:02:01 +08:00
47 lines
No EOL
1.1 KiB
YAML
47 lines
No EOL
1.1 KiB
YAML
name: Build App
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
|
|
jobs:
|
|
build_image:
|
|
name: Build Image
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: true
|
|
|
|
- name: Install buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
with:
|
|
config: .github/buildkit.toml
|
|
|
|
- name: Login to Docker
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set Vars
|
|
id: vars
|
|
run: |
|
|
echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
echo "IMAGE_NAME=ghcr.io/${GITHUB_REPOSITORY,,}/server" >> $GITHUB_ENV
|
|
|
|
- name: Build Image
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: ./
|
|
platforms: linux/amd64,linux/arm64
|
|
pull: true
|
|
push: true
|
|
tags: ${{ env.IMAGE_NAME }}:${{ env.TAG }} , ${{ env.IMAGE_NAME }}:latest |