From 2049601be56c553e53eb87bf87dd7a8e76dd8c94 Mon Sep 17 00:00:00 2001 From: TwiN Date: Tue, 18 Feb 2025 20:59:40 -0500 Subject: [PATCH] ci: Add publish-custom workflow --- .github/workflows/publish-custom.yml | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/publish-custom.yml diff --git a/.github/workflows/publish-custom.yml b/.github/workflows/publish-custom.yml new file mode 100644 index 00000000..b42a5f40 --- /dev/null +++ b/.github/workflows/publish-custom.yml @@ -0,0 +1,39 @@ +name: publish-custom +run-name: "${{ inputs.tag }}" +on: + workflow_dispatch: + inputs: + tag: + description: Custom tag to publish +jobs: + publish-custom: + runs-on: ubuntu-latest + timeout-minutes: 20 + steps: + - uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Get image repository + run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV + - name: Login to Docker Registry + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.IMAGE_REPOSITORY }} + tags: | + type=raw,value=${{ inputs.tag }} + - name: Build and push Docker image + uses: docker/build-push-action@v6 + with: + platforms: linux/amd64 + pull: true + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}