Skip to content

Commit a76659d

Browse files
authored
fix(action): add upload endpoint (#2317)
Signed-off-by: Robin Han <[email protected]>
1 parent 2c8ef90 commit a76659d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/github-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
args: --follow-symlinks --delete
5252
env:
53-
AWS_S3_ENDPOINT: 'https://oss-cn-hangzhou.aliyuncs.com'
53+
AWS_S3_ENDPOINT: ${{ secrets.UPLOAD_ENDPOINT }}
5454
AWS_S3_BUCKET: ${{ secrets.UPLOAD_BUCKET }}
5555
AWS_ACCESS_KEY_ID: ${{ secrets.UPLOAD_BUCKET_AK }}
5656
AWS_SECRET_ACCESS_KEY: ${{ secrets.UPLOAD_BUCKET_SK }}

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ MAINTAINER AutoMQ for Apache Kafka [email protected]
2121
# Set mirrors
2222
ARG general_mirror_url=""
2323
RUN [ -z "${general_mirror_url}" ] || (sed -i "s/deb.debian.org/${general_mirror_url}/g" /etc/apt/sources.list && sed -i "s|security.debian.org/debian-security|${general_mirror_url}/debian-security|g" /etc/apt/sources.list)
24-
RUN apt update && apt install -y vim
24+
RUN apt update -y && apt install -y vim
2525

2626
# Do not ask for confirmations when running apt-get, etc.
2727
ENV DEBIAN_FRONTEND=noninteractive \

0 commit comments

Comments
 (0)