From 60f4a0969827e575001ce96683ccab91ab80c224 Mon Sep 17 00:00:00 2001 From: Stan Dzhumaev Date: Fri, 13 Dec 2024 21:48:36 -0800 Subject: [PATCH] WIP --- .github/workflows/build-e2e-docker-image.yaml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/build-e2e-docker-image.yaml diff --git a/.github/workflows/build-e2e-docker-image.yaml b/.github/workflows/build-e2e-docker-image.yaml new file mode 100644 index 00000000..69e10574 --- /dev/null +++ b/.github/workflows/build-e2e-docker-image.yaml @@ -0,0 +1,38 @@ +name: Build + +on: + push: + branches: + - 'AXON-37-**' + workflow_dispatch: {} + # inputs: + # image-tag: + # description: 'The image tag to use for the build' + # required: true + # default: 'latest' + +jobs: + + build-e2e-docker-image: + + runs-on: ubuntu-latest + + steps: + + - uses: actions/checkout@v4 + + - name: Build the Docker image + run: | + docker build \ + --platform linux/amd64 \ + --tag ghcr.io/atlassian/atlascode-e2e:$GITHUB_SHA \ + --tag ghcr.io/atlassian/atlascode-e2e:latest \ + -