Skip to content

Commit

Permalink
Try to login into GHCR.io
Browse files Browse the repository at this point in the history
  • Loading branch information
agajdosi committed Jan 21, 2025
1 parent a183d13 commit e6b868a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,18 @@ jobs:
run: pip install -r requirements.txt
- name: Install Podman
run: sudo apt-get -y update && sudo apt-get -y install podman
- name: Login
- name: Login to Dockerhub
env:
PASSWORD: ${{ secrets.AGAJDOSI_DOCKERHUB_SECRET }}
run: podman login docker.io -u agajdosi -p $PASSWORD
- name: Build.py
run: python3 build.py

- name: Login to GHCR.io
uses: redhat-actions/podman-login@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push the container image to GHCR.io
run: podman push ghcr.io/blenderkit/headless-blender:multi-version

0 comments on commit e6b868a

Please sign in to comment.