Commit some changes that have been around forever

I don't know if these will fix CI, but I guess they won't hurt.
This commit is contained in:
Bryan Richter 2025-06-10 20:58:04 +03:00
parent b214cdbbf0
commit d5cf56f232
No known key found for this signature in database
GPG Key ID: B202264020068BFB

View File

@ -16,12 +16,11 @@ jobs:
- uses: actions/checkout@v4
- name: Log into Github registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build image
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/build:${GITHUB_REF#refs/heads/}
#IMAGE_ID=${{ github.repository }}:${GITHUB_REF#refs/heads/}
IMAGE_ID=ghcr.io/${{ github.repository }}/build:${GITHUB_REF#refs/heads/}
docker build . -f Dockerfile --tag $IMAGE_ID
docker push $IMAGE_ID
echo Pushed new build image $IMAGE_ID