2023-04-17 00:45:16 +03:00
|
|
|
name: Build docker image
|
|
|
|
|
|
|
|
on:
|
2024-06-23 14:06:22 +03:00
|
|
|
release:
|
|
|
|
types: [published]
|
2023-04-17 00:45:16 +03:00
|
|
|
push:
|
|
|
|
branches:
|
2023-04-30 06:05:53 +03:00
|
|
|
- main
|
2023-04-17 00:45:16 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-image:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
packages: write
|
|
|
|
steps:
|
2023-09-05 03:43:27 +03:00
|
|
|
- uses: actions/checkout@v4
|
2023-04-17 00:45:16 +03:00
|
|
|
- name: Docker metadata
|
|
|
|
id: meta
|
2023-09-13 03:16:17 +03:00
|
|
|
uses: docker/metadata-action@v5
|
2023-04-17 00:45:16 +03:00
|
|
|
with:
|
2023-04-20 18:36:25 +03:00
|
|
|
images: ghcr.io/${{ github.repository_owner }}/xray-core
|
2024-07-22 17:16:25 +03:00
|
|
|
flavor: latest=auto
|
2023-04-17 00:45:16 +03:00
|
|
|
tags: |
|
2024-06-23 14:06:22 +03:00
|
|
|
type=sha
|
2023-04-17 00:45:16 +03:00
|
|
|
type=ref,event=branch
|
|
|
|
type=ref,event=pr
|
|
|
|
type=semver,pattern={{version}}
|
2024-07-29 10:36:30 +03: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-17 00:45:16 +03:00
|
|
|
- name: Login to GitHub Container Registry
|
2023-09-13 03:16:02 +03:00
|
|
|
uses: docker/login-action@v3
|
2023-04-17 00:45:16 +03:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
2023-04-20 18:36:25 +03:00
|
|
|
username: ${{ github.repository_owner }}
|
2023-04-17 00:45:16 +03:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
2023-09-13 03:16:05 +03:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2023-04-17 00:45:16 +03:00
|
|
|
- name: Build and push
|
2024-06-18 08:34:37 +03:00
|
|
|
uses: docker/build-push-action@v6
|
2023-04-17 00:45:16 +03:00
|
|
|
with:
|
|
|
|
context: .
|
2024-07-29 10:36:30 +03:00
|
|
|
platforms: |
|
|
|
|
linux/amd64
|
|
|
|
linux/arm64
|
|
|
|
linux/loong64
|
|
|
|
linux/riscv64
|
|
|
|
provenance: false
|
2023-04-17 00:45:16 +03:00
|
|
|
file: .github/docker/Dockerfile
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2024-07-29 10:36:30 +03: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 }}
|