Skip to content

Commit

Permalink
correct name everywhere in the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Feb 25, 2024
1 parent 14390d5 commit f9df079
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Expand Up @@ -62,8 +62,8 @@ jobs:
- name: push container
id: push
run: |
REPO="$(docker images --format json | grep bytes.zone | jq -r ".Repository" | head -n 1)"
TAG="$(docker images --format json | grep bytes.zone | jq -r ".Tag" | head -n 1)"
REPO="$(docker images --format json | grep elo-anything | jq -r ".Repository" | head -n 1)"
TAG="$(docker images --format json | grep elo-anything | jq -r ".Tag" | head -n 1)"
SOURCE_NAME="$REPO:$TAG"
FINAL_NAME="$REGISTRY/$IMAGE_NAME:$TAG"
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
git config --global user.name "Github Actions"
git config --global user.email "noreply@github.com"
git add manifests/apps/bytes-zone
git commit --message "update bytes-zone to ${{ needs.push.outputs.image }}"
git add manifests/apps/elo-anything
git commit --message "update elo-anything to ${{ needs.push.outputs.image }}"
git push
fi

0 comments on commit f9df079

Please sign in to comment.