From dce202d0be531aac0de3aebd8a5725ee877ca324 Mon Sep 17 00:00:00 2001 From: TwiN Date: Thu, 11 Aug 2022 20:24:23 -0400 Subject: [PATCH] feat(ci): Add publish-experimental workflow --- .github/workflows/publish-experimental.yml | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/publish-experimental.yml diff --git a/.github/workflows/publish-experimental.yml b/.github/workflows/publish-experimental.yml new file mode 100644 index 00000000..7b706f1d --- /dev/null +++ b/.github/workflows/publish-experimental.yml @@ -0,0 +1,35 @@ +name: publish-experimental +description: "Used for building and publishing a Docker image with the experimental tag" +on: + workflow_dispatch: + inputs: + ref: + description: "Branch, tag or SHA to checkout" + required: true + default: "experimental" +jobs: + publish-experimental: + name: publish-experimental + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: actions/checkout@v3 + - name: Get image repository + run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - name: Login to Docker Registry + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + - name: Build and push docker image + uses: docker/build-push-action@v2 + with: + platforms: linux/amd64 + pull: true + push: true + tags: | + ${{ env.IMAGE_REPOSITORY }}:experimental