Skip to content

Commit

Permalink
Fix command line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
m3nowak committed Sep 13, 2024
1 parent 0203c33 commit 96fdc46
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/api-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
sudo apt-get update
sudo apt-get install -y podman
- name: Build the Container image
run: |
podman build . \
--tag podman push $IMAGE_NAME:${{ steps.pdm_install.outputs.version }} \
--tag podman push $IMAGE_NAME:${{ steps.pdm_install.outputs.version }}-${{ steps.date.outputs.date }} \
--tag podman push $IMAGE_NAME:${{ steps.pdm_install.outputs.version }}-${{ github.run_number }} \
run: >
podman build .
--tag podman push $IMAGE_NAME:${{ steps.pdm_install.outputs.version }}
--tag podman push $IMAGE_NAME:${{ steps.pdm_install.outputs.version }}-${{ steps.date.outputs.date }}
--tag podman push $IMAGE_NAME:${{ steps.pdm_install.outputs.version }}-${{ github.run_number }}
--tag podman push $IMAGE_NAME:latest
- name: Push the Container image to ghcr
run: |
Expand Down

0 comments on commit 96fdc46

Please sign in to comment.