use my dockerhub

This commit is contained in:
kadet77rus 2024-09-27 19:46:19 +03:00
parent dd8f4742e7
commit 1fb54d0972

View file

@ -26,7 +26,8 @@ jobs:
- name: Prepare image tags - name: Prepare image tags
id: image-tags id: image-tags
run: | run: |
base=ngoduykhanh/wireguard-ui # base=ngoduykhanh/wireguard-ui
base=kadet77rus/wireguard-ui
app_version=dev app_version=dev
## Set git tag as image tag ## Set git tag as image tag
@ -44,7 +45,7 @@ jobs:
${base}:${github_tag} ${base}:${github_tag}
END_HEREDOC END_HEREDOC
) )
## Set 'latest' image tag if 'main' or 'master' ## Set 'latest' image tag if 'main' or 'master'
## branch is pushed ## branch is pushed
## ##
@ -58,13 +59,13 @@ jobs:
## Print tags for debugging purpose ## Print tags for debugging purpose
## ##
echo "[INFO] container_images: ${container_images}" echo "[INFO] container_images: ${container_images}"
## Set container_images output ## Set container_images output
## ##
echo "container_images<<EOF" >> $GITHUB_OUTPUT echo "container_images<<EOF" >> $GITHUB_OUTPUT
echo "$container_images" >> $GITHUB_OUTPUT echo "$container_images" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT
## Set APP_VERSION env ## Set APP_VERSION env
# #
echo "APP_VERSION=${app_version}" >> $GITHUB_ENV echo "APP_VERSION=${app_version}" >> $GITHUB_ENV