fix logging into registry
Some checks failed
Build neovim image / build-neovim-arm64 (push) Failing after 8m3s
Build neovim image / build-neovim-amd64 (push) Successful in 9m9s
Build neovim image / update-images-manifest (push) Has been skipped

This commit is contained in:
Maciej Lebiest 2024-05-03 12:44:35 +02:00
parent 9d4f22b62f
commit 83ccf3251a

View file

@ -17,11 +17,11 @@ jobs:
dnf install -y nodejs git
- name: Check out repository code
uses: actions/checkout@v3
- run: |
podman build --ulimit nofile=10240:10240 . --tag $IMAGE:arm64
- name: login to registry
run: |
podman login -u "${{ secrets.PACKAGES_USERNAME }}" -p "${{ secrets.PACKAGES_PASSWD }}" forgejo.maciej.cloud
- run: |
podman build --ulimit nofile=10240:10240 . --tag $IMAGE:arm64
- name: Push image
run: |
podman push $IMAGE:arm64
@ -33,11 +33,11 @@ jobs:
dnf install -y nodejs git
- name: Check out repository code
uses: actions/checkout@v3
- run: |
podman build --ulimit nofile=10240:10240 . --tag $IMAGE:amd64
- name: login to registry
run: |
podman login -u "${{ secrets.PACKAGES_USERNAME }}" -p "${{ secrets.PACKAGES_PASSWD }}" forgejo.maciej.cloud
- run: |
podman build --ulimit nofile=10240:10240 . --tag $IMAGE:amd64
- name: Push image
run: |
podman push $IMAGE:amd64