teldrive/.github/workflows/build.yml

47 lines
1.1 KiB
YAML
Raw Normal View History

2023-08-16 05:58:41 +08:00
name: Build App
on:
2023-08-17 00:29:58 +08:00
workflow_dispatch:
2023-08-16 20:48:32 +08:00
push:
tags:
- '*'
2023-08-16 05:58:41 +08:00
env:
DOCKER_BUILDKIT: 1
2023-08-16 20:48:32 +08:00
2023-08-16 05:58:41 +08:00
jobs:
build_image:
name: Build Image
runs-on: ubuntu-latest
steps:
- name: Checkout
2023-09-08 19:06:59 +08:00
uses: actions/checkout@v4
2023-08-16 05:58:41 +08:00
with:
2023-09-08 19:06:59 +08:00
fetch-depth: 0
submodules: true
2023-09-08 18:37:11 +08:00
2023-08-16 05:58:41 +08:00
- 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 }}
2023-09-20 03:20:44 +08:00
- name: Set Vars
id: vars
run: |
echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
echo "IMAGE_NAME=ghcr.io/${GITHUB_REPOSITORY,,}/server" >> $GITHUB_ENV
2023-08-16 05:58:41 +08:00
2023-08-16 20:48:32 +08:00
- name: Build Image
2023-08-16 05:58:41 +08:00
uses: docker/build-push-action@v3
with:
context: ./
2023-09-20 03:20:44 +08:00
platforms: linux/amd64,linux/arm64
2023-08-16 05:58:41 +08:00
pull: true
push: true
2023-09-20 03:20:44 +08:00
tags: ${{ env.IMAGE_NAME }}:${{ env.TAG }} , ${{ env.IMAGE_NAME }}:latest