updated variables in gitlab-ci

This commit is contained in:
Sohrab Behdani 2024-09-18 20:59:56 +03:30
parent be4c6a6b64
commit b266264f96

View file

@ -5,17 +5,17 @@ stages:
image: archlinux/archlinux:base-devel image: archlinux/archlinux:base-devel
variables: variables:
Desktop: "cosmic" Desktop: "gnome"
build_iso: build_iso:
stage: build stage: build
script: script:
- ./build.sh - ./build.sh
- echo "Renaming the output ISO file" - echo "Renaming the output ISO file"
- mv out/*.iso out/ParchLinux-cosmic-latest.iso - mv out/*.iso out/ParchLinux-$Desktop-latest.iso
artifacts: artifacts:
paths: paths:
- out/ParchLinux-cosmic-latest.iso - out/ParchLinux-$Desktop-latest.iso
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
@ -27,10 +27,10 @@ deploy_iso:
- echo "Installing sshpass and rsync" - echo "Installing sshpass and rsync"
- pacman -Syu --noconfirm sshpass rsync - pacman -Syu --noconfirm sshpass rsync
- echo "Removing old ISO files from remote directory" - echo "Removing old ISO files from remote directory"
- sshpass -p "$PASS" ssh -o StrictHostKeyChecking=no parch@$SSH_ROOT rm -rf /srv/http/cosmic/ - sshpass -p "$PASS" ssh -o StrictHostKeyChecking=no parch@$SSH_ROOT rm -rf /srv/http/$Desktop/
- echo "Creating new directory on remote host" - echo "Creating new directory on remote host"
- sshpass -p "$PASS" ssh -o StrictHostKeyChecking=no parch@$SSH_ROOT mkdir -p /srv/http/cosmic/ - sshpass -p "$PASS" ssh -o StrictHostKeyChecking=no parch@$SSH_ROOT mkdir -p /srv/http/$Desktop/
- echo "Uploading new ISO via rsync" - echo "Uploading new ISO via rsync"
- sshpass -p "$PASS" rsync -r out/ParchLinux-cosmic-latest.iso parch@$SSH_ROOT:/srv/http/cosmic/ - sshpass -p "$PASS" rsync -r out/ParchLinux-$Desktop-latest.iso parch@$SSH_ROOT:/srv/http/$Desktop/
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG