forked from immich-app/immich
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): Push images to GitHub Container Registry (immich-app#964)
* feat(ci): Push images to GitHub Container Registry * fix up tag * fix typo * use github.repository_owner
- Loading branch information
Showing
3 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,12 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and push Immich Mono Repo | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -37,6 +43,7 @@ jobs: | |
cache-to: type=gha,mode=max | ||
tags: | | ||
altran1502/immich-server:latest | ||
ghcr.io/${{ github.repository_owner }}/immich-server:latest | ||
build_and_push_machine_learning_latest: | ||
runs-on: ubuntu-latest | ||
|
@@ -56,6 +63,12 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and Push Machine Learning | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -67,6 +80,7 @@ jobs: | |
cache-to: type=gha,mode=max | ||
tags: | | ||
altran1502/immich-machine-learning:latest | ||
ghcr.io/${{ github.repository_owner }}/immich-machine-learning:latest | ||
build_and_push_web_latest: | ||
runs-on: ubuntu-latest | ||
|
@@ -85,6 +99,12 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and Push Web | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -95,6 +115,7 @@ jobs: | |
push: true | ||
tags: | | ||
altran1502/immich-web:latest | ||
ghcr.io/${{ github.repository_owner }}/immich-web:latest | ||
build_and_push_nginx_latest: | ||
runs-on: ubuntu-latest | ||
|
@@ -113,6 +134,12 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and Push Proxy | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -122,3 +149,4 @@ jobs: | |
push: true | ||
tags: | | ||
altran1502/immich-proxy:latest | ||
ghcr.io/${{ github.repository_owner }}/immich-proxy:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,13 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
if: ${{ github.repository == 'immich-app/immich' }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and push Immich Mono Repo | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -39,6 +46,8 @@ jobs: | |
tags: | | ||
altran1502/immich-server:staging | ||
altran1502/immich-server:${{ github.event.pull_request.number }} | ||
ghcr.io/${{ github.repository_owner }}/immich-server:staging | ||
ghcr.io/${{ github.repository_owner }}/immich-server:${{ github.event.pull_request.number }} | ||
build_and_push_machine_learning_staging: | ||
runs-on: ubuntu-latest | ||
|
@@ -59,6 +68,13 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
if: ${{ github.repository == 'immich-app/immich' }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and Push Machine Learning | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -71,6 +87,8 @@ jobs: | |
tags: | | ||
altran1502/immich-machine-learning:staging | ||
altran1502/immich-machine-learning:${{ github.event.pull_request.number }} | ||
ghcr.io/${{ github.repository_owner }}/immich-machine-learning:staging | ||
ghcr.io/${{ github.repository_owner }}/immich-machine-learning:${{ github.event.pull_request.number }} | ||
build_and_push_web_staging: | ||
runs-on: ubuntu-latest | ||
|
@@ -90,6 +108,13 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
if: ${{ github.repository == 'immich-app/immich' }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and Push Web | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -101,6 +126,8 @@ jobs: | |
tags: | | ||
altran1502/immich-web:staging | ||
altran1502/immich-web:${{ github.event.pull_request.number }} | ||
ghcr.io/${{ github.repository_owner }}/immich-web:staging | ||
ghcr.io/${{ github.repository_owner }}/immich-web:${{ github.event.pull_request.number }} | ||
build_and_push_nginx_staging: | ||
runs-on: ubuntu-latest | ||
|
@@ -120,6 +147,13 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
if: ${{ github.repository == 'immich-app/immich' }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and Push Proxy | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -130,3 +164,5 @@ jobs: | |
tags: | | ||
altran1502/immich-proxy:staging | ||
altran1502/immich-proxy:${{ github.event.pull_request.number }} | ||
ghcr.io/${{ github.repository_owner }}/immich-proxy:staging | ||
ghcr.io/${{ github.repository_owner }}/immich-proxy:${{ github.event.pull_request.number }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,13 @@ jobs: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push immich-server release | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -46,6 +53,8 @@ jobs: | |
tags: | | ||
altran1502/immich-server:${{ steps.previoustag.outputs.tag }} | ||
altran1502/immich-server:release | ||
ghcr.io/${{ github.repository_owner }}/immich-server:${{ steps.previoustag.outputs.tag }} | ||
ghcr.io/${{ github.repository_owner }}/immich-server:release | ||
build_and_push_machine_learning_release: | ||
runs-on: ubuntu-latest | ||
|
@@ -69,6 +78,12 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and Push Machine Learning | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -81,6 +96,8 @@ jobs: | |
tags: | | ||
altran1502/immich-machine-learning:${{ steps.previoustag.outputs.tag }} | ||
altran1502/immich-machine-learning:release | ||
ghcr.io/${{ github.repository_owner }}/immich-machine-learning:${{ steps.previoustag.outputs.tag }} | ||
ghcr.io/${{ github.repository_owner }}/immich-machine-learning:release | ||
build_and_push_web_release: | ||
runs-on: ubuntu-latest | ||
|
@@ -110,6 +127,13 @@ jobs: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push immich-web release | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -121,6 +145,8 @@ jobs: | |
tags: | | ||
altran1502/immich-web:${{ steps.previoustag.outputs.tag }} | ||
altran1502/immich-web:release | ||
ghcr.io/${{ github.repository_owner }}/immich-web:${{ steps.previoustag.outputs.tag }} | ||
ghcr.io/${{ github.repository_owner }}/immich-web:release | ||
build_and_push_nginx_release: | ||
runs-on: ubuntu-latest | ||
|
@@ -150,6 +176,13 @@ jobs: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push immich-proxy release | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -160,3 +193,5 @@ jobs: | |
tags: | | ||
altran1502/immich-proxy:release | ||
altran1502/immich-proxy:${{ steps.previoustag.outputs.tag }} | ||
ghcr.io/${{ github.repository_owner }}/immich-proxy:${{ steps.previoustag.outputs.tag }} | ||
ghcr.io/${{ github.repository_owner }}/immich-proxy:release |