name: Build Image and Publish to Dockerhub & GPR on: release: types: [ created ] 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@v3 with: fetch-depth: '0' - name: Set up QEMU uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 # 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@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Login to the GPR uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GPR_TOKEN }} - name: Build and push frpc uses: docker/build-push-action@v4 with: context: . platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x push: true tags: | fatedier/frpc:${{ env.TAG_NAME }} ghcr.io/fatedier/frpc:${{ env.TAG_NAME }} build-args: | APP=frpc TITLE=frpc (client) - name: Build and push frps uses: docker/build-push-action@v4 with: context: . platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x push: true tags: | fatedier/frps:${{ env.TAG_NAME }} ghcr.io/fatedier/frps:${{ env.TAG_NAME }} build-args: | APP=frps TITLE=frps (server)