Compare commits
1 commit
2afa724e11
...
310ccd0383
| Author | SHA1 | Date | |
|---|---|---|---|
| 310ccd0383 |
1 changed files with 6 additions and 2 deletions
|
|
@ -12,7 +12,9 @@ jobs:
|
|||
- name: Checkout Repo
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Podman
|
||||
run: apt update && apt install -y podman
|
||||
run: |
|
||||
apt update && apt install -y podman
|
||||
echo 'unqualified-search-registries=["docker.io"]' >> /etc/containers/registries.conf
|
||||
- name: Login to Forgejo Container Registry
|
||||
run: echo "${{ secrets.FORGEJO_TOKEN }}" | podman login ${{ forgejo.server_url }} -u ${{ forgejo.actor }} --password-stdin
|
||||
- name: Build image
|
||||
|
|
@ -28,7 +30,9 @@ jobs:
|
|||
- name: Checkout Repo
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Podman
|
||||
run: apt update && apt install -y podman
|
||||
run: |
|
||||
apt update && apt install -y podman
|
||||
echo 'unqualified-search-registries=["docker.io"]' >> /etc/containers/registries.conf
|
||||
- name: Login to Forgejo Container Registry
|
||||
run: echo "${{ secrets.FORGEJO_TOKEN }}" | podman login ${{ forgejo.server_url }} -u ${{ forgejo.actor }} --password-stdin
|
||||
- name: Build image
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue