Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
c64058c5
authored
Oct 12, 2025
by
Seefs
Committed by
GitHub
Oct 12, 2025
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2022 from seefs001/fix/ignore_ghcr
ignore ghcr
parents
250f10fa
1e6d34f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
35 deletions
+35
-35
.github/workflows/docker-image-arm64.yml
+35
-35
No files found.
.github/workflows/docker-image-arm64.yml
View file @
c64058c5
...
...
@@ -38,8 +38,8 @@ jobs:
echo "Building tag: $TAG for ${{ matrix.arch }}"
-
name
:
Normalize GHCR repository
run
:
echo "GHCR_REPOSITORY=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
#
- name: Normalize GHCR repository
#
run: echo "GHCR_REPOSITORY=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
-
name
:
Set up Docker Buildx
uses
:
docker/setup-buildx-action@v3
...
...
@@ -50,12 +50,12 @@ jobs:
username
:
${{ secrets.DOCKERHUB_USERNAME }}
password
:
${{ secrets.DOCKERHUB_TOKEN }}
-
name
:
Log in to GHCR
uses
:
docker/login-action@v3
with
:
registry
:
ghcr.io
username
:
${{ github.actor }}
password
:
${{ secrets.GITHUB_TOKEN }}
#
- name: Log in to GHCR
#
uses: docker/login-action@v3
#
with:
#
registry: ghcr.io
#
username: ${{ github.actor }}
#
password: ${{ secrets.GITHUB_TOKEN }}
-
name
:
Extract metadata (labels)
id
:
meta
...
...
@@ -63,7 +63,7 @@ jobs:
with
:
images
:
|
calciumion/new-api
ghcr.io/${{ env.GHCR_REPOSITORY }}
#
ghcr.io/${{ env.GHCR_REPOSITORY }}
-
name
:
Build & push single-arch (to both registries)
uses
:
docker/build-push-action@v6
...
...
@@ -74,8 +74,8 @@ jobs:
tags
:
|
calciumion/new-api:${{ env.TAG }}-${{ matrix.arch }}
calciumion/new-api:latest-${{ matrix.arch }}
ghcr.io/${{ env.GHCR_REPOSITORY }}:${{ env.TAG }}-${{ matrix.arch }}
ghcr.io/${{ env.GHCR_REPOSITORY }}:latest-${{ matrix.arch }}
#
ghcr.io/${{ env.GHCR_REPOSITORY }}:${{ env.TAG }}-${{ matrix.arch }}
#
ghcr.io/${{ env.GHCR_REPOSITORY }}:latest-${{ matrix.arch }}
labels
:
${{ steps.meta.outputs.labels }}
cache-from
:
type=gha
cache-to
:
type=gha,mode=max
...
...
@@ -83,16 +83,16 @@ jobs:
sbom
:
false
create_manifests
:
name
:
Create multi-arch manifests (Docker Hub
+ GHCR
)
name
:
Create multi-arch manifests (Docker Hub)
needs
:
[
build_single_arch
]
runs-on
:
ubuntu-latest
if
:
startsWith(github.ref, 'refs/tags/')
steps
:
-
name
:
Extract tag
run
:
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
-
name
:
Normalize GHCR repository
run
:
echo "GHCR_REPOSITORY=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
#
#
- name: Normalize GHCR repository
#
run: echo "GHCR_REPOSITORY=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
-
name
:
Log in to Docker Hub
uses
:
docker/login-action@v3
...
...
@@ -115,23 +115,23 @@ jobs:
calciumion/new-api:latest-arm64
# ---- GHCR ----
-
name
:
Log in to GHCR
uses
:
docker/login-action@v3
with
:
registry
:
ghcr.io
username
:
${{ github.actor }}
password
:
${{ secrets.GITHUB_TOKEN }}
-
name
:
Create & push manifest (GHCR - version)
run
:
|
docker buildx imagetools create \
-t ghcr.io/${GHCR_REPOSITORY}:${TAG} \
ghcr.io/${GHCR_REPOSITORY}:${TAG}-amd64 \
ghcr.io/${GHCR_REPOSITORY}:${TAG}-arm64
-
name
:
Create & push manifest (GHCR - latest)
run
:
|
docker buildx imagetools create \
-t ghcr.io/${GHCR_REPOSITORY}:latest \
ghcr.io/${GHCR_REPOSITORY}:latest-amd64 \
ghcr.io/${GHCR_REPOSITORY}:latest-arm64
#
- name: Log in to GHCR
#
uses: docker/login-action@v3
#
with:
#
registry: ghcr.io
#
username: ${{ github.actor }}
#
password: ${{ secrets.GITHUB_TOKEN }}
#
- name: Create & push manifest (GHCR - version)
#
run: |
#
docker buildx imagetools create \
#
-t ghcr.io/${GHCR_REPOSITORY}:${TAG} \
#
ghcr.io/${GHCR_REPOSITORY}:${TAG}-amd64 \
#
ghcr.io/${GHCR_REPOSITORY}:${TAG}-arm64
#
#
- name: Create & push manifest (GHCR - latest)
#
run: |
#
docker buildx imagetools create \
#
-t ghcr.io/${GHCR_REPOSITORY}:latest \
#
ghcr.io/${GHCR_REPOSITORY}:latest-amd64 \
#
ghcr.io/${GHCR_REPOSITORY}:latest-arm64
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment