Skip to content

Commit

Permalink
Make sure the repo name uses lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
programLyrique committed Jan 14, 2025
1 parent bd56496 commit eb96d11
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,17 @@ jobs:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: set lower case owner name
run: |
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV}
env:
OWNER: '${{ github.repository_owner }}'
# See https://github.com/devcontainers/ci/blob/main/docs/github-action.md
- name: Build and run dev container task
uses: devcontainers/[email protected]
with:
imageName: ghcr.io/PRL-PRG/r_compile_server
imageName: ghcr.io/${{ OWNER_LC }}/r-compile-server
# Change this to be your CI task/script
runCmd: cd server; mvn --batch-mode --update-snapshots test

0 comments on commit eb96d11

Please sign in to comment.