mapcomplete/.github/workflows/deploy_pietervdvn.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

99 lines
3 KiB
YAML
Raw Normal View History

2021-06-02 00:03:37 +02:00
name: Deployment on pietervdvn
on:
push:
branches:
- feature/*
- theme/*
- refactoring/*
2021-06-02 00:03:37 +02:00
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.actor != 'weblate' }}
2021-06-02 00:03:37 +02:00
steps:
- uses: actions/checkout@v2
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 }}
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-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
- 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"
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
env:
TARGET_BRANCH: ${{ env.TARGET_BRANCH }}
2023-09-21 16:09:51 +02:00
- uses: mshick/add-pr-comment@a96c578acba98b60f16c6866d5f20478dc4ef68b
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 }}