2023-04-16 21:45:16 +00:00
|
|
|
name: Build docker image
|
|
|
|
|
|
|
|
on:
|
2024-06-23 11:06:22 +00:00
|
|
|
release:
|
|
|
|
types: [published]
|
2023-04-16 21:45:16 +00:00
|
|
|
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
|
2024-07-22 14:16:25 +00:00
|
|
|
flavor: latest=auto
|
2023-04-16 21:45:16 +00:00
|
|
|
tags: |
|
2024-06-23 11:06:22 +00:00
|
|
|
type=sha
|
2023-04-16 21:45:16 +00:00
|
|
|
type=ref,event=branch
|
|
|
|
type=ref,event=pr
|
|
|
|
type=semver,pattern={{version}}
|
2024-07-29 07:36:30 +00:00
|
|
|
- name: Docker metadata Loyalsoldier flavor
|
|
|
|
id: loyalsoldier
|
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
with:
|
|
|
|
images: ghcr.io/${{ github.repository_owner }}/xray-core
|
|
|
|
flavor: |
|
|
|
|
latest=auto
|
|
|
|
suffix=-ls,onlatest=true
|
|
|
|
tags: |
|
|
|
|
type=sha
|
|
|
|
type=ref,event=branch
|
|
|
|
type=ref,event=pr
|
|
|
|
type=semver,pattern={{version}}
|
2023-04-16 21:45:16 +00:00
|
|
|
- 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 }}
|
|
|
|
- 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
|
2024-06-18 05:34:37 +00:00
|
|
|
uses: docker/build-push-action@v6
|
2023-04-16 21:45:16 +00:00
|
|
|
with:
|
|
|
|
context: .
|
2024-07-29 07:36:30 +00:00
|
|
|
platforms: |
|
|
|
|
linux/amd64
|
|
|
|
linux/arm64
|
|
|
|
linux/loong64
|
|
|
|
linux/riscv64
|
|
|
|
provenance: false
|
2023-04-16 21:45:16 +00:00
|
|
|
file: .github/docker/Dockerfile
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2024-07-29 07:36:30 +00:00
|
|
|
- name: Build and push Loyalsoldier flavor
|
|
|
|
uses: docker/build-push-action@v6
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: |
|
|
|
|
linux/amd64
|
|
|
|
linux/arm64
|
|
|
|
linux/loong64
|
|
|
|
linux/riscv64
|
|
|
|
provenance: false
|
|
|
|
file: .github/docker/Dockerfile
|
|
|
|
build-args: flavor=loyalsoldier
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ steps.loyalsoldier.outputs.tags }}
|