Skip to content

Commit

Permalink
fix second yaml error
Browse files Browse the repository at this point in the history
  • Loading branch information
cjtitus committed Dec 20, 2023
1 parent 18288ca commit 8000db3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: echo "LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)" >> "$GITHUB_ENV"

- name: Authenticate to ghcr
run: echo ${{ secrets.GITHUB_TOKEN }} | buildah login --username ${{ github.actor }} --password-stdin ghcr.io
run: echo ${{ secrets.GITHUB_TOKEN }} | buildah login --username ${{ github.actor }} --password-stdin ghcr.io

- name: Run build script
run: bash buildah_scripts/build.sh
Expand All @@ -34,4 +34,4 @@ jobs:
echo "buildah push simline:latest $IMAGE_ID:latest"
buildah push --creds ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} simline:latest $IMAGE_ID:latest
echo "buildah push simline:latest $IMAGE_ID:$LATEST_TAG"
buildah push simline:latest $IMAGE_ID:$$LATEST_TAG
buildah push simline:latest $IMAGE_ID:$LATEST_TAG

0 comments on commit 8000db3

Please sign in to comment.