Skip to content

Commit

Permalink
Revert docker_release.yml changes (#551)
Browse files Browse the repository at this point in the history
This reverts commit 15857e8.
This reverts commit 17a2bf7.
This reverts commit 89a57c1.
This reverts commit 717bc4b.
This reverts commit b6b4f7f.
  • Loading branch information
srics authored Sep 16, 2024
1 parent 15857e8 commit e0b89b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/docker_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
tags:
- "v[0-9].[0-9]+.[0-9]+*"
workflow_dispatch:
jobs:
build-and-push:
name: Build base image
Expand All @@ -22,8 +21,8 @@ jobs:

- name: Get Release Tag
run: |
TAG=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
echo "VERSION=$(echo $TAG | sed 's/v//')" >> $GITHUB_ENV
TAG=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
echo "VERSION=$(echo $TAG | sed 's/v//')" >> $GITHUB_ENV
- name: Build base images
uses: docker/bake-action@v4
Expand All @@ -34,5 +33,4 @@ jobs:
workdir: deploy/docker
targets: base
push: true
no-cache: true

2 changes: 1 addition & 1 deletion deploy/docker/docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ target "base" {
base_image = "python:3.11"
pebblo_version = "${PEBBLO_VERSION}"
}
platforms = ["linux/amd64"]
platforms = ["linux/amd64", "linux/arm64"]
}

0 comments on commit e0b89b2

Please sign in to comment.