We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a040b commit b9fe812Copy full SHA for b9fe812
.github/workflows/ci.yml
@@ -88,3 +88,31 @@ jobs:
88
# rm -rf dist
89
# python -m build
90
# 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
118
+ docker push ghcr.io/${{ github.repository }}:${{ github.sha }}
0 commit comments