Skip to content

Commit f37baf4

Browse files
committed
chore: configure CI.
1 parent d12e3b9 commit f37baf4

12 files changed

+29
-728
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/agent-release-artifacts.yml

Lines changed: 0 additions & 87 deletions
This file was deleted.

.github/workflows/docker-image.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build and Push Docker Image
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-and-push:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v2
15+
16+
- name: Log into registry
17+
uses: docker/login-action@v2
18+
with:
19+
registry: ghcr.io
20+
username: ${{ github.actor }}
21+
password: ${{ github.token }}
22+
23+
- name: Build and push Docker image
24+
uses: docker/build-push-action@v2
25+
with:
26+
context: ./rust
27+
file: ./rust/Dockerfile
28+
push: true
29+
tags: ghcr.io/${{github.repository}}:latest

.github/workflows/e2e.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

.github/workflows/mergify.yml.bak

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/monorepo-docker.yml

Lines changed: 0 additions & 75 deletions
This file was deleted.

0 commit comments

Comments
 (0)