diff --git a/.github/workflows/build-and-push-image.yml b/.github/workflows/build-and-push-image.yml deleted file mode 100644 index c6caff6c..00000000 --- a/.github/workflows/build-and-push-image.yml +++ /dev/null @@ -1,83 +0,0 @@ -name: Build Image and Publish to Dockerhub & GPR - -on: - release: - types: [ published ] - workflow_dispatch: - inputs: - tag: - description: 'Image tag' - required: true - default: 'test' -permissions: - contents: read - -jobs: - image: - name: Build Image from Dockerfile and binaries - runs-on: ubuntu-latest - steps: - # environment - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: '0' - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - # get image tag name - - name: Get Image Tag Name - run: | - if [ x${{ github.event.inputs.tag }} == x"" ]; then - echo "TAG_NAME=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - else - echo "TAG_NAME=${{ github.event.inputs.tag }}" >> $GITHUB_ENV - fi - - name: Login to DockerHub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_PASSWORD }} - - - name: Login to the GPR - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GPR_TOKEN }} - - # prepare image tags - - name: Prepare Image Tags - run: | - echo "DOCKERFILE_FRPC_PATH=dockerfiles/Dockerfile-for-frpc" >> $GITHUB_ENV - echo "DOCKERFILE_FRPS_PATH=dockerfiles/Dockerfile-for-frps" >> $GITHUB_ENV - echo "TAG_FRPC=fatedier/frpc:${{ env.TAG_NAME }}" >> $GITHUB_ENV - echo "TAG_FRPS=fatedier/frps:${{ env.TAG_NAME }}" >> $GITHUB_ENV - echo "TAG_FRPC_GPR=ghcr.io/fatedier/frpc:${{ env.TAG_NAME }}" >> $GITHUB_ENV - echo "TAG_FRPS_GPR=ghcr.io/fatedier/frps:${{ env.TAG_NAME }}" >> $GITHUB_ENV - - - name: Build and push frpc - uses: docker/build-push-action@v5 - with: - context: . - file: ./dockerfiles/Dockerfile-for-frpc - platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x - push: true - tags: | - ${{ env.TAG_FRPC }} - ${{ env.TAG_FRPC_GPR }} - - - name: Build and push frps - uses: docker/build-push-action@v5 - with: - context: . - file: ./dockerfiles/Dockerfile-for-frps - platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x - push: true - tags: | - ${{ env.TAG_FRPS }} - ${{ env.TAG_FRPS_GPR }} diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml new file mode 100644 index 00000000..ad2f4be7 --- /dev/null +++ b/.github/workflows/docker-build.yml @@ -0,0 +1,84 @@ +name: Docker Build and Push + +on: + push: + branches: + - main + - dev + tags: + - 'v*' + pull_request: + branches: + - main + - dev + workflow_dispatch: + +env: + REGISTRY: ghcr.io + IMAGE_NAME_FRPS: ghcr.io/${{ github.repository_owner }}/loliacli-frps + IMAGE_NAME_FRPC: ghcr.io/${{ github.repository_owner }}/loliacli-frpc + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + id-token: write + + strategy: + matrix: + include: + - name: frps + dockerfile: dockerfiles/Dockerfile-for-frps + image_name: ${{ env.IMAGE_NAME_FRPS }} + - name: frpc + dockerfile: dockerfiles/Dockerfile-for-frpc + image_name: ${{ env.IMAGE_NAME_FRPC }} + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ matrix.image_name }} + tags: | + type=ref,event=branch + type=ref,event=pr + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=semver,pattern={{major}} + type=raw,value=latest,enable={{is_default_branch}} + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + file: ${{ matrix.dockerfile }} + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max + platforms: linux/amd64,linux/arm64 + + - name: Generate image digest + if: github.event_name != 'pull_request' + run: | + echo "Image pushed to: ${{ matrix.image_name }}" + echo "Tags: ${{ steps.meta.outputs.tags }}" diff --git a/dockerfiles/Dockerfile-for-frpc b/dockerfiles/Dockerfile-for-frpc index 7d77a26d..70f4999a 100644 --- a/dockerfiles/Dockerfile-for-frpc +++ b/dockerfiles/Dockerfile-for-frpc @@ -1,4 +1,4 @@ -FROM golang:1.24 AS building +FROM golang:1.25 AS building COPY . /building WORKDIR /building diff --git a/dockerfiles/Dockerfile-for-frps b/dockerfiles/Dockerfile-for-frps index 489ce0f5..b76dab9d 100644 --- a/dockerfiles/Dockerfile-for-frps +++ b/dockerfiles/Dockerfile-for-frps @@ -1,4 +1,4 @@ -FROM golang:1.24 AS building +FROM golang:1.25 AS building COPY . /building WORKDIR /building