Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,6 @@ env:

on:
workflow_dispatch:
push:
branches:
- main
tags:
- "v*"
paths-ignore:
- docs/**
- chart/**
- .github/workflows/**

jobs:
oss-build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
lint:
runs-on: depot-ubuntu-22.04
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
lint:
runs-on: depot-ubuntu-22.04
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand All @@ -32,7 +32,7 @@ jobs:
run: helm template obot chart --namespace obot --set dev.useEmbeddedDb=true

build:
runs-on: depot-ubuntu-22.04
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down
22 changes: 9 additions & 13 deletions .github/workflows/test-docker-build.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,30 @@
name: Test Docker Build
on:
pull_request:
branches:
- main
paths-ignore:
- docs/**
- chart/**
workflow_dispatch:

env:
BASE_IMAGE: ghcr.io/accelerate-data/obot/base:latest
PROVIDERS_IMAGE: ghcr.io/accelerate-data/providers-vibedata:latest
ENCRYPTION_BINS_IMAGE: ghcr.io/accelerate-data/providers-vibedata/encryption-bins:latest

jobs:
build:
runs-on: depot-ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Depot
uses: depot/setup-action@v1
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Buildx
uses: docker/setup-buildx-action@v3

- name: Build Docker Image
uses: depot/build-push-action@v1
uses: docker/build-push-action@v6
with:
project: bbqjs4tj1g
context: .
push: false
platforms: linux/amd64,linux/arm64
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
PROVIDERS_IMAGE=${{ env.PROVIDERS_IMAGE }}
ENCRYPTION_BINS_IMAGE=${{ env.ENCRYPTION_BINS_IMAGE }}
2 changes: 1 addition & 1 deletion .github/workflows/user-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
lint:
runs-on: depot-ubuntu-22.04
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down
Loading