Skip to content

Commit b9fe812

Browse files
authored
Added github actions for container build and push. (#41)
1 parent 77a040b commit b9fe812

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yml

+28
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,31 @@ jobs:
8888
# rm -rf dist
8989
# python -m build
9090
# twine upload dist/*
91+
92+
93+
publish-docker:
94+
needs: [tests]
95+
runs-on: ubuntu-latest
96+
if: github.ref == 'refs/heads/main'
97+
98+
steps:
99+
- name: checkout code
100+
uses: actions/checkout@v4
101+
102+
- name: set up docker buildx
103+
uses: docker/setup-buildx-action@v2
104+
105+
- name: log in to github container registry
106+
uses: docker/login-action@v2
107+
with:
108+
registry: ghcr.io
109+
username: ${{ github.actor }}
110+
password: ${{ secrets.github_token }}
111+
112+
- name: build docker image
113+
run: |
114+
docker build -t ghcr.io/${{ github.repository }}:${{ github.sha }} .
115+
116+
- name: push docker image
117+
run: |
118+
docker push ghcr.io/${{ github.repository }}:${{ github.sha }}

0 commit comments

Comments
 (0)