File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 50
50
with :
51
51
args : --follow-symlinks --delete
52
52
env :
53
- AWS_S3_ENDPOINT : ' https://oss-cn-hangzhou.aliyuncs.com '
53
+ AWS_S3_ENDPOINT : ${{ secrets.UPLOAD_ENDPOINT }}
54
54
AWS_S3_BUCKET : ${{ secrets.UPLOAD_BUCKET }}
55
55
AWS_ACCESS_KEY_ID : ${{ secrets.UPLOAD_BUCKET_AK }}
56
56
AWS_SECRET_ACCESS_KEY : ${{ secrets.UPLOAD_BUCKET_SK }}
Original file line number Diff line number Diff line change 21
21
# Set mirrors
22
22
ARG general_mirror_url=""
23
23
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
25
25
26
26
# Do not ask for confirmations when running apt-get, etc.
27
27
ENV DEBIAN_FRONTEND=noninteractive \
You can’t perform that action at this time.
0 commit comments