From 73a7639472a047455f8f36e0a70dfe40041875a5 Mon Sep 17 00:00:00 2001 From: Simon Prochazka Date: Sat, 25 Apr 2020 23:23:21 +0200 Subject: [PATCH] chore: Rename organization to aevea --- .github/workflows/pr.yml | 2 +- .github/workflows/push.yml | 8 ++++---- .github/workflows/release.yml | 10 +++++----- Dockerfile | 2 +- README.md | 18 +++++++++--------- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 2a64815..a733345 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -8,4 +8,4 @@ jobs: steps: - uses: actions/checkout@v1 - name: Run commitsar - uses: docker://commitsar/commitsar + uses: docker://aevea/commitsar diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 3ab1573..3260341 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@master - name: GitHub Package Registry - uses: outillage/kaniko-action@master + uses: aevea/action-kaniko@master with: registry: docker.pkg.github.com password: ${{ secrets.GITHUB_TOKEN }} @@ -18,10 +18,10 @@ jobs: cache_registry: cache - name: Dockerhub - uses: outillage/kaniko-action@master + uses: aevea/action-kaniko@master with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - image: outillage/kaniko + image: aevea/kaniko cache: true - cache_registry: outillage/cache + cache_registry: aevea/cache diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 73bf734..ea8e3c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,12 +13,12 @@ jobs: uses: actions/checkout@v1 - name: Release Notary Action - uses: docker://commitsar/release-notary + uses: docker://aevea/release-notary env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: GitHub Package Registry - uses: outillage/kaniko-action@master + uses: aevea/action-kaniko@master with: registry: docker.pkg.github.com password: ${{ secrets.GITHUB_TOKEN }} @@ -27,10 +27,10 @@ jobs: cache_registry: cache - name: Dockerhub - uses: outillage/kaniko-action@master + uses: aevea/action-kaniko@master with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - image: outillage/kaniko + image: aevea/kaniko cache: true - cache_registry: outillage/cache + cache_registry: aevea/cache diff --git a/Dockerfile b/Dockerfile index 18f6f4d..da2cfeb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,5 @@ COPY entrypoint.sh / ENTRYPOINT ["/entrypoint.sh"] -LABEL repository="https://github.com/outillage/action-kaniko" \ +LABEL repository="https://github.com/aevea/action-kaniko" \ maintainer="Alex Viscreanu " diff --git a/README.md b/README.md index 06a9e3a..beab0e8 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ jobs: steps: - uses: actions/checkout@master - name: Kaniko build - uses: outillage/kaniko-action@master + uses: aevea/action-kaniko@master with: - image: outillage/kaniko + image: aevea/kaniko username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} cache: true - cache_registry: outillage/cache + cache_registry: aevea/cache ``` ## Required Arguments @@ -62,7 +62,7 @@ In this case, the authentication credentials need to be passed via GitHub Action ```yaml with: - image: outillage/kaniko + image: aevea/kaniko username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} ``` @@ -72,17 +72,17 @@ doesn't work. If you want to use caching with Dockerhub, create a `cache` reposi ```yaml with: - image: outillage/kaniko + image: aevea/kaniko username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} cache: true - cache_registry: outillage/cache + cache_registry: aevea/cache ``` ### [docker.pkg.github.com](https://github.com/features/packages) GitHub's docker registry is a bit special. It doesn't allow top-level images, so this action will prefix any image with the GitHub namespace. -If you want to push your image like `outillage/kaniko-action/kaniko`, you'll only need to pass `kaniko` to this action. +If you want to push your image like `aevea/action-kaniko/kaniko`, you'll only need to pass `kaniko` to this action. The authentication is automatically done using the `GITHUB_ACTOR` and `GITHUB_TOKEN` provided from GitHub itself. But as `GITHUB_TOKEN` is not passed by default, it will have to be explicitly set up. @@ -125,7 +125,7 @@ with: registry: registry.gitlab.com username: ${{ secrets.GL_REGISTRY_USERNAME }} password: ${{ secrets.GL_REGISTRY_PASSWORD }} - image: outillage/kaniko + image: aevea/kaniko ``` > NOTE: As GitLab's registry does support namespacing, Kaniko can natively push cached layers to it, so only `cache: true` is necessary to be @@ -136,7 +136,7 @@ with: registry: registry.gitlab.com username: ${{ secrets.GL_REGISTRY_USERNAME }} password: ${{ secrets.GL_REGISTRY_PASSWORD }} - image: outillage/kaniko + image: aevea/kaniko cache: true ```