Skip to content

Commit 9f905fc

Browse files
committed
Back to docker
1 parent ee3dd67 commit 9f905fc

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/workflows/master.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)