sing-box/.github/workflows/docker.yml

40 lines
1.1 KiB
YAML
Raw Normal View History

2022-08-27 14:55:55 +00:00
name: Build Docker Images
2024-01-24 04:13:12 +00:00
2022-08-27 14:55:55 +00:00
on:
2024-01-24 04:13:12 +00:00
release:
types:
- published
2022-08-27 14:55:55 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2022-08-27 14:55:55 +00:00
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
2022-10-29 10:01:11 +00:00
- name: Setup QEMU for Docker Buildx
uses: docker/setup-qemu-action@v3
2022-08-27 14:55:55 +00:00
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
2022-08-27 14:55:55 +00:00
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker metadata
id: metadata
uses: docker/metadata-action@v5
2022-08-27 14:55:55 +00:00
with:
images: ghcr.io/sagernet/sing-box
- name: Build and release Docker images
uses: docker/build-push-action@v5
2022-08-27 14:55:55 +00:00
with:
platforms: linux/386,linux/amd64,linux/arm64,linux/s390x
2022-08-27 14:55:55 +00:00
target: dist
build-args: |
BUILDKIT_CONTEXT_KEEP_GIT_DIR=1
2022-10-29 10:01:11 +00:00
tags: |
2024-01-24 04:13:12 +00:00
ghcr.io/sagernet/sing-box:latest
ghcr.io/sagernet/sing-box:${{ github.ref_name }}
push: true