Skip to content

Commit

Permalink
env
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas committed Oct 8, 2024
1 parent 86199dc commit d8f5d06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/aarch64-Linux/pkgs/aisap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ "${SKIP_BUILD}" == "NO" ]; then
RELEASE_TAG="$(git ls-remote --tags "${SOURCE_URL}" | awk -F/ '/tags/ && !/{}$/ {print $NF}' | grep -iv "continuous" | sort --version-sort | tail -n 1 | tr -d '[:space:]')" && export RELEASE_TAG="${RELEASE_TAG}"
##Build
docker stop "alpine-builder" 2>/dev/null ; docker rm "alpine-builder" 2>/dev/null
docker run --privileged --net="host" --name "alpine-builder" --pull="always" "azathothas/alpine-builder:latest" \
docker run --privileged --net="host" --name "alpine-builder" --pull="always" -e GITHUB_TOKEN="${GITHUB_TOKEN}" -e RELEASE_TAG="${RELEASE_TAG}" "azathothas/alpine-builder:latest" \
bash -l -c '
#Install Deps
apk update --no-interactive 2>/dev/null
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/x86_64-Linux/pkgs/aisap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ "${SKIP_BUILD}" == "NO" ]; then
RELEASE_TAG="$(git ls-remote --tags "${SOURCE_URL}" | awk -F/ '/tags/ && !/{}$/ {print $NF}' | grep -iv "continuous" | sort --version-sort | tail -n 1 | tr -d '[:space:]')" && export RELEASE_TAG="${RELEASE_TAG}"
##Build
docker stop "alpine-builder" 2>/dev/null ; docker rm "alpine-builder" 2>/dev/null
docker run --privileged --net="host" --name "alpine-builder" --pull="always" "azathothas/alpine-builder:latest" \
docker run --privileged --net="host" --name "alpine-builder" -e GITHUB_TOKEN="${GITHUB_TOKEN}" -e RELEASE_TAG="${RELEASE_TAG}" --pull="always" "azathothas/alpine-builder:latest" \
bash -l -c '
#Install Deps
apk update --no-interactive 2>/dev/null
Expand Down

0 comments on commit d8f5d06

Please sign in to comment.