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