Skip to content

Commit

Permalink
chore: Rename organization to aevea
Browse files Browse the repository at this point in the history
  • Loading branch information
fallion authored and aexvir committed Apr 26, 2020
1 parent 3e63daf commit 73a7639
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Run commitsar
uses: docker://commitsar/commitsar
uses: docker://aevea/commitsar
8 changes: 4 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <alexviscreanu@gmail.com>"
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
```
Expand All @@ -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.
Expand Down Expand 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
Expand All @@ -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
```
Expand Down

0 comments on commit 73a7639

Please sign in to comment.