ci: hardcode registry url to fix act env evaluation
Some checks failed
Docker Build / build (push) Failing after 16s
Some checks failed
Docker Build / build (push) Failing after 16s
This commit is contained in:
parent
9997927bef
commit
e0a48cfe08
1 changed files with 4 additions and 6 deletions
|
|
@ -7,9 +7,7 @@ on:
|
||||||
- 'README.md'
|
- 'README.md'
|
||||||
- '.gitignore'
|
- '.gitignore'
|
||||||
|
|
||||||
env:
|
|
||||||
REGISTRY: git.unfilteredrealm.com
|
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
@ -25,15 +23,15 @@ jobs:
|
||||||
- name: Log in to the Container registry
|
- name: Log in to the Container registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: git.unfilteredrealm.com
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Extract metadata (tags, labels) for Docker
|
- name: Extract metadata (tags, labels) for Docker
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
images: git.unfilteredrealm.com/${{ github.repository }}
|
||||||
tags: type=raw,value=latest
|
tags: type=raw,value=latest
|
||||||
|
|
||||||
- name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue