2020-09-23 11:05:50 +08:00
|
|
|
name: Build Image and Publish to Dockerhub & GPR
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [ created ]
|
2020-09-23 14:20:46 +08:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
tag:
|
|
|
|
description: 'Image tag'
|
|
|
|
required: true
|
|
|
|
default: 'test'
|
2020-09-23 11:05:50 +08:00
|
|
|
jobs:
|
|
|
|
image:
|
|
|
|
name: Build Image from Dockerfile and binaries
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
# environment
|
2021-06-03 00:56:07 +08:00
|
|
|
- name: Checkout
|
2022-10-27 14:22:14 +08:00
|
|
|
uses: actions/checkout@v3
|
2020-09-23 11:05:50 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: '0'
|
2021-06-03 00:56:07 +08:00
|
|
|
|
|
|
|
- name: Set up QEMU
|
2022-10-27 14:22:14 +08:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2021-06-03 00:56:07 +08:00
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2022-10-27 14:22:14 +08:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2021-06-03 00:56:07 +08:00
|
|
|
|
2020-09-23 14:20:46 +08:00
|
|
|
# get image tag name
|
2021-06-03 00:56:07 +08:00
|
|
|
- name: Get Image Tag Name
|
2020-09-23 11:05:50 +08:00
|
|
|
run: |
|
2020-09-23 14:40:22 +08:00
|
|
|
if [ x${{ github.event.inputs.tag }} == x"" ]; then
|
2020-11-09 16:56:53 +08:00
|
|
|
echo "TAG_NAME=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
2020-09-23 14:20:46 +08:00
|
|
|
else
|
2020-11-09 16:56:53 +08:00
|
|
|
echo "TAG_NAME=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
|
2020-09-23 14:20:46 +08:00
|
|
|
fi
|
2022-04-29 01:12:07 +08:00
|
|
|
- name: Login to DockerHub
|
2022-10-27 14:22:14 +08:00
|
|
|
uses: docker/login-action@v2
|
2022-04-29 01:12:07 +08:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Login to the GPR
|
2022-10-27 14:22:14 +08:00
|
|
|
uses: docker/login-action@v2
|
2022-04-29 01:12:07 +08:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
2022-04-29 01:15:42 +08:00
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GPR_TOKEN }}
|
2021-06-03 00:56:07 +08:00
|
|
|
|
2020-09-23 11:05:50 +08:00
|
|
|
# prepare image tags
|
2021-06-03 00:56:07 +08:00
|
|
|
- name: Prepare Image Tags
|
2020-09-23 11:05:50 +08:00
|
|
|
run: |
|
2020-11-09 16:56:53 +08:00
|
|
|
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
|
2021-06-03 00:56:07 +08:00
|
|
|
|
2022-04-29 01:12:07 +08:00
|
|
|
- name: Build and push frpc
|
2022-10-27 14:22:14 +08:00
|
|
|
uses: docker/build-push-action@v3
|
2022-04-29 01:12:07 +08:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./dockerfiles/Dockerfile-for-frpc
|
2022-10-27 10:19:30 +08:00
|
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
|
2022-04-29 01:15:42 +08:00
|
|
|
push: true
|
2022-04-29 01:12:07 +08:00
|
|
|
tags: |
|
|
|
|
${{ env.TAG_FRPC }}
|
|
|
|
${{ env.TAG_FRPC_GPR }}
|
|
|
|
|
|
|
|
- name: Build and push frps
|
2022-10-27 14:22:14 +08:00
|
|
|
uses: docker/build-push-action@v3
|
2022-04-29 01:12:07 +08:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./dockerfiles/Dockerfile-for-frps
|
2022-10-27 10:19:30 +08:00
|
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
|
2022-04-29 01:15:42 +08:00
|
|
|
push: true
|
2022-04-29 01:12:07 +08:00
|
|
|
tags: |
|
|
|
|
${{ env.TAG_FRPS }}
|
|
|
|
${{ env.TAG_FRPS_GPR }}
|