File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 1+ name : unit test coverage
2+
13# add public code coverage reports
24on :
35 push :
Original file line number Diff line number Diff line change 1+ name : docker build
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ env :
9+ REGISTRY : docker.io
10+ IMAGE_NAME : spyduck/cluster-api-provider-proxmox
11+
12+ jobs :
13+ build :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - name : Checkout repository
17+ uses : actions/checkout@v4
18+
19+ - name : Log in to Docker Hub
20+ uses : docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
21+ with :
22+ username : ${{ secrets.DOCKER_USERNAME }}
23+ password : ${{ secrets.DOCKER_PASSWORD }}
24+
25+ - name : Build and push Docker image
26+ run : " make docker-build docker-push IMG=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${ GITHUB_SHA::7 }"
Original file line number Diff line number Diff line change 1- name : Docker
1+ name : publish container image
22
33# This workflow uses actions that are not certified by GitHub.
44# They are provided by a third-party and are governed by
You can’t perform that action at this time.
0 commit comments