Skip to content

Commit

Permalink
Rename variable
Browse files Browse the repository at this point in the history
Not sure why this is trying to add in extra stuff here...

This commit fixes kenellorando#252.
  • Loading branch information
za419 committed Aug 1, 2024
1 parent 22b8931 commit c7a6be7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,30 +71,30 @@ jobs:
- name: Build Cadence server image
run: |
IMAGE=kenellorando/cadence
declare -a tags
declare -a flags
for tag in "${{ env.tags }}"
do
tags+=("-t $IMAGE:$tag")
flags+=("-t $IMAGE:$tag")
done
docker build ${tags[@]} -f src/cadence.Dockerfile src
docker build ${flags[@]} -f src/cadence.Dockerfile src
- name: Build icecast2 image
run: |
IMAGE=kenellorando/cadence_icecast2
declare -a tags
declare -a flags
for tag in "${{ env.tags }}"
do
tags+=("-t $IMAGE:$tag")
flags+=("-t $IMAGE:$tag")
done
docker build ${tags[@]} -f src/icecast2.Dockerfile src
docker build ${flags[@]} -f src/icecast2.Dockerfile src
- name: Build liquidsoap image
run: |
IMAGE=kenellorando/cadence_liquidsoap
declare -a tags
declare -a flags
for tag in "${{ env.tags }}"
do
tags+=("-t $IMAGE:$tag")
flags+=("-t $IMAGE:$tag")
done
docker build ${tags[@]} -f src/liquidsoap.Dockerfile src
docker build ${flags[@]} -f src/liquidsoap.Dockerfile src
- name: Login to Docker Hub
if: env.push == 'true'
uses: docker/login-action@v3
Expand Down

0 comments on commit c7a6be7

Please sign in to comment.