diff options
| author | seth <[email protected]> | 2024-12-19 16:49:02 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-12-19 16:49:02 -0500 |
| commit | 334ee4edc24d941a930d91a68064f34000055488 (patch) | |
| tree | 7602f02e4ca875982835b09638b9ef81d2732e05 /.github/workflows | |
| parent | 2ae2b978f3fad7a58cb129333b36a210bb200488 (diff) | |
ci: fix docker image name
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docker.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index fe8cffd..e3e70e7 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -88,7 +88,7 @@ jobs: env: REGISTRY: "ghcr.io" USERNAME: ${{ github.actor }} - IMAGE_NAME: "chill-discord-bot" + IMAGE_NAME: "chill_discord_bot" steps: - name: "Checkout repository" @@ -113,7 +113,7 @@ jobs: architectures=("amd64" "arm64") for arch in "${architectures[@]}"; do docker load < images/container-"$arch"/*.tar.gz - docker tag chill-discord-bot:latest-"$arch" "$TAG"-"$arch" + docker tag "$IMAGE_NAME":latest-"$arch" "$TAG"-"$arch" docker push "$TAG"-"$arch" done |
