fix: better ci script (#25)
Release package / release (push) Successful in 15m33s

Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com>
Reviewed-on: #25
This commit was merged in pull request #25.
This commit is contained in:
2026-04-17 05:59:35 +00:00
parent a97e9ade6e
commit f1ffc63a5f
+10 -3
View File
@@ -11,9 +11,16 @@ jobs:
permissions: permissions:
contents: write contents: write
steps: steps:
- uses: gerlero/apt-install@v1 - name: Install dependencies with Proxy
with: env:
packages: openjdk-25-jdk-headless docker.io http_proxy: "http://host.docker.internal:3142"
https_proxy: "http://host.docker.internal:3142"
run: |
# Kiểm tra proxy có hoạt động không
echo "Acquire::http::Proxy \"$http_proxy\";" > /etc/apt/apt.conf.d/80proxy
apt-get update
apt-get install -y --no-install-recommends --no-install-suggests \
openjdk-25-jdk-headless docker-cli docker-buildx
- name: Setup SSH Key - name: Setup SSH Key
run: | run: |