Skip to content

Commit deabebd

Browse files
committed
feat(ci): add GitHub Actions workflows for Docker image build and rename PyPI publish
1 parent dead917 commit deabebd

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.github/workflows/docker_image.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build Docker Image
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
jobs:
10+
docker:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Docker Buildx
17+
uses: docker/setup-buildx-action@v3
18+
19+
- name: Build
20+
uses: docker/build-push-action@v6
21+
with:
22+
push: false
23+
context: .
24+
file: Dockerfile
25+
tags: "${{ github.sha }}"

0 commit comments

Comments
 (0)