Fix: actually deploy on the production repo

This commit is contained in:
Pieter Vander Vennet 2023-06-23 22:44:33 +02:00
parent 1faf93d6e2
commit ca899561d5

View file

@ -52,7 +52,7 @@ jobs:
echo "Cloning destination repo"
git config --global user.email "pietervdvn@posteo.net"
git config --global user.name "pietervdvn"
git clone --depth 1 --single-branch --branch master "https://x-access-token:$DEPLOY_KEY_PIETERVDVN@github.com/pietervdvn/pietervdvn.github.io.git"
git clone --depth 1 --single-branch --branch master "https://x-access-token:$DEPLOY_KEY_PIETERVDVN@github.com/MapComplete/mapcomplete.github.io.git"
echo "Destination repo is cloned"
- name: Sync repo
@ -62,23 +62,19 @@ jobs:
cd pietervdvn.github.io
git pull
- name: get branch name
run: echo TARGET_BRANCH=${GITHUB_REF:11} >> $GITHUB_ENV
- name: "Copying files"
run: |
echo "Deploying"
rm -rf pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/*
mkdir -p pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/
cp -r dist/* pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/
cd pietervdvn.github.io/
rm -rf mapcomplete.github.io/*
cp -r dist/* mapcomplete.github.io/
cd mapcomplete.github.io/
echo "mapcomplete.osm.be" > CNAME
git add *
if git status | grep -q "Changes to be committed"
then
git commit -am "Deploying a new version of mapcomplete"
git commit -am "Deploying a new version"
git push
else
echo "No changes to commit"
fi
env:
TARGET_BRANCH: ${{ env.TARGET_BRANCH }}