Skip to content

Commit

Permalink
change docker image namespace to repository owner everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
f-kretschmer committed Feb 15, 2024
1 parent a352b1c commit c04ad07
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Create image from repository
run: docker build -t ghcr.io/${{ github.actor }}/repo_rt_preprocessing .
run: docker build -t ghcr.io/${{ github.repository_owner }}/repo_rt_preprocessing .
- name: Push image to GitHub Container Registry
run: docker push ghcr.io/${{ github.actor }}/repo_rt_preprocessing:latest
run: docker push ghcr.io/${{ github.repository_owner }}/repo_rt_preprocessing:latest
2 changes: 1 addition & 1 deletion .github/workflows/preprocess.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Preprocess raw data
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.actor }}/repo_rt_preprocessing:latest
image: ghcr.io/${{ github.repository_owner }}/repo_rt_preprocessing:latest
env:
RENV_PATHS_LIBRARY: '/renv/library'
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preprocess_manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: Preprocess raw data
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.actor }}/repo_rt_preprocessing:latest
image: ghcr.io/${{ github.repository_owner }}/repo_rt_preprocessing:latest
env:
RENV_PATHS_LIBRARY: '/renv/library'
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
renv:
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.actor }}/repo_rt_preprocessing:latest
image: ghcr.io/${{ github.repository_owner }}/repo_rt_preprocessing:latest
env:
RENV_PATHS_LIBRARY: '/renv/library'
defaults:
Expand Down

0 comments on commit c04ad07

Please sign in to comment.