Skip to content

Commit edcd8ca

Browse files
committed
fix ci (again)
1 parent a6331d8 commit edcd8ca

2 files changed

Lines changed: 7 additions & 11 deletions

File tree

.github/workflows/build-push-docker.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,20 @@ jobs:
3030

3131
# Setting up Buildx because it's needed by build-push-action
3232
- name: Setup Docker Buildx
33-
uses: docker/setup-buildx-action@v1
34-
with:
35-
# Using this driver fixes the timeout issue with buildx that made it impossible to push more than one image to the GHCR.
36-
driver-opts: image=moby/buildkit:master
37-
install: true
33+
uses: docker/setup-buildx-action@v3
3834

3935
- name: Login to GitHub Container Registry
40-
uses: docker/login-action@v1
36+
uses: docker/login-action@v3
4137
with:
4238
registry: ghcr.io
4339
username: ${{ github.repository_owner }}
44-
password: ${{ secrets.GH_REGISTRY_TOKEN }}
40+
password: ${{ secrets.GITHUB_TOKEN }}
4541

4642
- name: Build and push the image
47-
uses: docker/build-push-action@v2
43+
uses: docker/build-push-action@v5
4844
with:
4945
push: true
5046
no-cache: true
5147
tags: |
52-
ghcr.io/dudrie/tutor-management-system:${{ github.event.release.tag_name }}
53-
ghcr.io/dudrie/tutor-management-system:latest
48+
ghcr.io/TMS-Uni-Stuttgart/tutor-management-system:${{ github.event.release.tag_name }}
49+
ghcr.io/TMS-Uni-Stuttgart/tutor-management-system:latest

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"engines": {
55
"node": ">=14",
66
"pnpm": ">=5"

0 commit comments

Comments
 (0)