2021-06-02 00:03:37 +02:00
name : Deployment on pietervdvn
2023-01-12 01:15:29 +01:00
on :
push :
branches :
2023-01-29 18:52:12 +01:00
- feature/*
- theme/*
2023-07-15 18:08:05 +02:00
- refactoring/*
2021-06-02 00:03:37 +02:00
jobs :
build :
runs-on : ubuntu-latest
2023-07-15 17:27:26 +02:00
if : ${{ github.actor != 'weblate' }}
2021-06-02 00:03:37 +02:00
steps :
- uses : actions/checkout@v2
2021-09-09 00:05:51 +02:00
2023-07-27 01:58:08 +02:00
- name : print actor
shell : bash
run : echo ${{ github.actor }}
2023-05-19 11:31:53 +02:00
- name : Set up Node.js
uses : actions/setup-node@v3
with :
node-version : "16"
cache : "npm"
cache-dependency-path : package-lock.json
- name : install deps
run : npm ci
shell : bash
2023-07-27 01:58:08 +02:00
2023-05-19 11:31:53 +02:00
- name : create generated dir
run : mkdir ./assets/generated
shell : bash
- name : create dependencies
2023-05-19 13:00:26 +02:00
run : npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run generate:editor-layer-index
2023-05-19 11:31:53 +02:00
shell : bash
- name : sync translations
run : npm run generate:translations
shell : bash
- name : generate layeroverview
run : npm run reset:layeroverview
shell : bash
- name : run tests
run : npm run test
shell : bash
- name : Prepare deploy
run : npm run prepare-deploy
shell : bash
2023-05-19 11:33:08 +02:00
- name : Clone deployment repo
2021-06-02 00:03:37 +02:00
env :
2021-06-02 00:53:18 +02:00
DEPLOY_KEY_PIETERVDVN : ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
2021-09-09 00:05:51 +02:00
run : |
2021-06-02 00:03:37 +02:00
echo "Cloning destination repo"
git config --global user.email "pietervdvn@posteo.net"
2021-06-02 00:44:26 +02:00
git config --global user.name "pietervdvn"
2021-06-02 00:10:51 +02:00
git clone --depth 1 --single-branch --branch master "https://x-access-token:$DEPLOY_KEY_PIETERVDVN@github.com/pietervdvn/pietervdvn.github.io.git"
2021-06-02 00:03:37 +02:00
echo "Destination repo is cloned"
2021-09-09 00:05:51 +02:00
2021-11-04 22:22:26 +01:00
- name : Sync repo
env :
DEPLOY_KEY_PIETERVDVN : ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
run : |
cd pietervdvn.github.io
git pull
2022-09-04 23:38:47 +02:00
- name : get branch name
run : echo TARGET_BRANCH=${GITHUB_REF:11} >> $GITHUB_ENV
2021-06-02 00:03:37 +02:00
- name : "Copying files"
run : |
echo "Deploying"
2022-09-04 23:38:47 +02:00
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 }}/
2021-06-02 00:31:14 +02:00
cd pietervdvn.github.io/
2021-06-02 00:03:37 +02:00
git add *
if git status | grep -q "Changes to be committed"
then
2021-06-02 00:31:14 +02:00
git commit -am "Deploying a new version of mapcomplete"
2021-06-02 00:03:37 +02:00
git push
else
echo "No changes to commit"
fi
2022-09-04 23:38:47 +02:00
env :
TARGET_BRANCH : ${{ env.TARGET_BRANCH }}
- uses : mshick/add-pr-comment@v1
name : Comment the PR with the review URL
if : ${{ success() && github.ref != 'refs/heads/develop' && github.ref != 'refs/heads/master' }}
with :
message : |
[ 🚀 Preview Branch](https://pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }})
repo-token : ${{ secrets.GITHUB_TOKEN }}