Update .forgejo/workflows/build.yml

This commit is contained in:
Seraphim Strub 2025-03-21 23:34:20 +00:00
parent 0e5b8b9699
commit da6a65ab3e

View file

@ -133,21 +133,9 @@ jobs:
# username: ${{ github.actor }} # username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }} # password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to the Container registry
# workaround for https://github.com/redhat-actions/podman-login/issues/42 since the docker config from the host doesn't come up to the container
- name: Workaround open podman-login action issue
env:
auth: "{ \"auths\": {} }"
run: | run: |
mkdir -p $HOME/.docker echo "${{ secrets.GITHUB_TOKEN }}" | sudo podman login rievo.dev -u ${{ github.actor }} --password-stdin
echo $auth > $HOME/.docker/config.json
- name: Log in to the GitHub Container registry
uses: https://github.com/redhat-actions/podman-login@v1
with:
registry: "rievo.dev"
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Workaround bug where capital letters in your GitHub username make it impossible to push to GHCR. # Workaround bug where capital letters in your GitHub username make it impossible to push to GHCR.
# https://github.com/macbre/push-to-ghcr/issues/12 # https://github.com/macbre/push-to-ghcr/issues/12