This commit is contained in:
parent
6ae9f6bce6
commit
1f0786a79a
1 changed files with 5 additions and 2 deletions
7
.github/workflows/.github-ci.yaml
vendored
7
.github/workflows/.github-ci.yaml
vendored
|
@ -2,6 +2,7 @@ name: ci
|
||||||
|
|
||||||
on: push
|
on: push
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
@ -13,9 +14,11 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
registry=${{ github.server_url }}
|
registry=${{ github.server_url }}
|
||||||
registry=${registry##http*://}
|
registry=${registry##http*://}
|
||||||
echo "registry=${registry}" | tee "$GITHUB_OUTPUT"
|
echo "registry=${registry}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "registry=${registry}"
|
||||||
repository="$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')"
|
repository="$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')"
|
||||||
echo "repository=${repository}" | tee "$GITHUB_OUTPUT"
|
echo "repository=${repository}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "repository=${repository}"
|
||||||
-
|
-
|
||||||
name: Docker meta
|
name: Docker meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
|
|
Loading…
Reference in a new issue