Skip to content

Commit 2d5ae97

Browse files
committed
Revert "fixed github workflows"
This reverts commit 6be870f.
1 parent 6be870f commit 2d5ae97

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

.github/workflows/docker-nightly-release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ jobs:
6363
username: ${{ github.repository_owner }}
6464
password: ${{ secrets.GITHUB_TOKEN }}
6565

66+
- name: Login to Docker Hub
67+
uses: docker/login-action@v3
68+
with:
69+
username: ${{ secrets.DOCKERHUB_USERNAME }}
70+
password: ${{ secrets.DOCKERHUB_TOKEN }}
71+
6672
- name: Set up QEMU
6773
uses: docker/setup-qemu-action@v3
6874

@@ -77,4 +83,5 @@ jobs:
7783
platforms: linux/amd64,linux/arm64
7884
push: true
7985
tags: |
80-
ghcr.io/maksimyugai/it-tools:nightly
86+
corentinth/it-tools:nightly
87+
ghcr.io/corentinth/it-tools:nightly

.github/workflows/releases.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
username: ${{ github.repository_owner }}
2323
password: ${{ secrets.GITHUB_TOKEN }}
2424

25+
- name: Login to Docker Hub
26+
uses: docker/login-action@v3
27+
with:
28+
username: ${{ secrets.DOCKERHUB_USERNAME }}
29+
password: ${{ secrets.DOCKERHUB_TOKEN }}
30+
2531
- name: Set up QEMU
2632
uses: docker/setup-qemu-action@v3
2733

@@ -36,8 +42,10 @@ jobs:
3642
platforms: linux/amd64,linux/arm64
3743
push: true
3844
tags: |
39-
ghcr.io/maksimyugai/it-tools:latest
40-
ghcr.io/maksimyugai/it-tools:${{ env.RELEASE_VERSION}}
45+
corentinth/it-tools:latest
46+
corentinth/it-tools:${{ env.RELEASE_VERSION }}
47+
ghcr.io/corentinth/it-tools:latest
48+
ghcr.io/corentinth/it-tools:${{ env.RELEASE_VERSION}}
4149
4250
github-release:
4351
runs-on: ubuntu-latest
@@ -82,9 +90,14 @@ jobs:
8290
draft: true
8391
prerelease: false
8492
body: |
93+
## Docker images
94+
95+
- Docker Hub
96+
- `corentinth/it-tools:latest`
97+
- `corentinth/it-tools:${{ env.RELEASE_VERSION }}`
8598
- GitHub Container Registry
86-
- `ghcr.io/maksimyugai/it-tools:latest`
87-
- `ghcr.io/maksimyugai/it-tools:${{ env.RELEASE_VERSION}}`
99+
- `ghcr.io/corentinth/it-tools:latest`
100+
- `ghcr.io/corentinth/it-tools:${{ env.RELEASE_VERSION}}`
88101
89102
## Changelog
90103

0 commit comments

Comments
 (0)