File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -115,20 +115,19 @@ jobs:
115115 file : ./services/app/assp/codebattle/cover/excoveralls.json
116116 fail_ci_if_error : false
117117
118- - name : Install Podman
119- run : |
120- sudo apt-get update
121- sudo apt-get -y install podman
122-
123118 - name : Login to Github Container Registry
124- run : podman login ghcr.io -u vtm9 -p ${{ secrets.GH_REGISTRY_TOKEN }}
119+ uses : docker/login-action@v3
120+ with :
121+ registry : ghcr.io
122+ username : vtm9
123+ password : ${{ secrets.GH_REGISTRY_TOKEN }}
125124
126125 - name : Build and push codebattle image
127126 run : |
128- make GIT_HASH=${{ github.sha }} podman- build-codebattle
129- make podman- push-codebattle
127+ make GIT_HASH=${{ github.sha }} build-codebattle
128+ make push-codebattle
130129
131130 - name : Build and push runner image
132131 run : |
133- make podman- build-runner
134- make podman- push-runner
132+ make build-runner
133+ make push-runner
You can’t perform that action at this time.
0 commit comments