2023-04-16 21:45:16 +00:00
|
|
|
name: Build docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-04-30 03:05:53 +00:00
|
|
|
- main
|
2023-04-16 21:45:16 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-image:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
packages: write
|
|
|
|
steps:
|
2023-09-05 00:43:27 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-04-16 21:45:16 +00:00
|
|
|
- name: Docker metadata
|
|
|
|
id: meta
|
2023-09-13 00:16:17 +00:00
|
|
|
uses: docker/metadata-action@v5
|
2023-04-16 21:45:16 +00:00
|
|
|
with:
|
2023-04-20 15:36:25 +00:00
|
|
|
images: ghcr.io/${{ github.repository_owner }}/xray-core
|
2023-04-16 21:45:16 +00:00
|
|
|
flavor: latest=true
|
|
|
|
tags: |
|
|
|
|
type=ref,event=branch
|
|
|
|
type=ref,event=pr
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
- name: Login to GitHub Container Registry
|
2023-09-13 00:16:02 +00:00
|
|
|
uses: docker/login-action@v3
|
2023-04-16 21:45:16 +00:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
2023-04-20 15:36:25 +00:00
|
|
|
username: ${{ github.repository_owner }}
|
2023-04-16 21:45:16 +00:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- # Add support for more platforms with QEMU (optional)
|
|
|
|
# https://github.com/docker/setup-qemu-action
|
|
|
|
name: Set up QEMU
|
2023-09-13 00:16:13 +00:00
|
|
|
uses: docker/setup-qemu-action@v3
|
2023-04-16 21:45:16 +00:00
|
|
|
- name: Set up Docker Buildx
|
2023-09-13 00:16:05 +00:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2023-04-16 21:45:16 +00:00
|
|
|
- name: Build and push
|
2023-09-13 00:16:09 +00:00
|
|
|
uses: docker/build-push-action@v5
|
2023-04-16 21:45:16 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
file: .github/docker/Dockerfile
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2023-04-30 03:05:53 +00:00
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|