mirror of
https://github.com/heyhusen/archlinux-package-action.git
synced 2025-04-02 17:45:02 +02:00
make repository name lowercase
Signed-off-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>
This commit is contained in:
parent
2d9dafa60e
commit
618a0ba862
1 changed files with 7 additions and 1 deletions
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
|
@ -106,7 +106,13 @@ jobs:
|
|||
- name: Update action.yml to use edge tagged container image
|
||||
if: github.ref == 'refs/heads/main'
|
||||
run: |
|
||||
sed -i 's/.*image\:.*/ image\: \"docker\:\/\/ghcr.io\/${{ github.repository_owner }}\/${{ github.event.repository.name }}\:edge\"/' action.yml
|
||||
REPOSITORY_OWNER=${{ github.repository_owner }}
|
||||
REPOSITORY_OWNER=$(echo $REPOSITORY_OWNER | tr '[:upper:]' '[:lower:]')
|
||||
|
||||
REPOSITORY_NAME=${{ github.event.repository.name }}
|
||||
REPOSITORY_NAME=$(echo $REPOSITORY_NAME | tr '[:upper:]' '[:lower:]')
|
||||
|
||||
sed -i 's/.*image\:.*/ image\: \"docker\:\/\/ghcr.io\/${REPOSITORY_OWNER}\/${REPOSITORY_NAME}\:edge\"/' action.yml
|
||||
cat action.yml
|
||||
|
||||
- name: Running test
|
||||
|
|
Loading…
Add table
Reference in a new issue