Skip to content

Commit d82a768

Browse files
author
You
committed
fix: update registry details and standardize quotes in release_docker workflow
1 parent 9649c6d commit d82a768

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/release_docker.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ name: release_docker
33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- "v*"
77
branches:
88
- main
9+
- feat/123pan
910
pull_request:
1011
branches:
1112
- main
@@ -15,11 +16,11 @@ concurrency:
1516
cancel-in-progress: true
1617

1718
env:
18-
REGISTRY: 'xhofe/alist'
19-
REGISTRY_USERNAME: 'xhofe'
19+
REGISTRY: "alliot/alist"
20+
REGISTRY_USERNAME: "alliot"
2021
REGISTRY_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
21-
ARTIFACT_NAME: 'binaries_docker_release'
22-
RELEASE_PLATFORMS: 'linux/amd64,linux/arm64,linux/arm/v7,linux/386,linux/arm/v6,linux/s390x,linux/ppc64le,linux/riscv64'
22+
ARTIFACT_NAME: "binaries_docker_release"
23+
RELEASE_PLATFORMS: "linux/amd64,linux/arm64,linux/arm/v7,linux/386,linux/arm/v6,linux/s390x,linux/ppc64le,linux/riscv64"
2324
IMAGE_PUSH: ${{ github.event_name == 'push' }}
2425
IMAGE_IS_PROD: ${{ github.ref_type == 'tag' }}
2526
IMAGE_TAGS_BETA: |
@@ -39,7 +40,7 @@ jobs:
3940

4041
- uses: actions/setup-go@v5
4142
with:
42-
go-version: 'stable'
43+
go-version: "stable"
4344

4445
- name: Cache Musl
4546
id: cache-musl
@@ -98,7 +99,7 @@ jobs:
9899
- uses: actions/download-artifact@v4
99100
with:
100101
name: ${{ env.ARTIFACT_NAME }}
101-
path: 'build/'
102+
path: "build/"
102103

103104
- name: Set up QEMU
104105
uses: docker/setup-qemu-action@v3
@@ -134,4 +135,4 @@ jobs:
134135
build-args: ${{ matrix.build_arg }}
135136
tags: ${{ steps.meta.outputs.tags }}
136137
labels: ${{ steps.meta.outputs.labels }}
137-
platforms: ${{ env.RELEASE_PLATFORMS }}
138+
platforms: ${{ env.RELEASE_PLATFORMS }}

0 commit comments

Comments
 (0)