Import markers from Ricci #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Import markers from Ricci' | |
on: | |
workflow_dispatch | |
jobs: | |
import-markers: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Import markers | |
env: | |
URL: ${{secrets.MARKERS_URL_RICCI}} | |
run: | | |
mkdir -p minimap | |
curl --silent --location --output minimap/minimapmarkers.bin "${URL}" | |
node_modules/.bin/tibia-maps --from-minimap=minimap --output-dir=data --markers-only | |
node scripts/disable-marker-pack.mjs 'ignore' | |
git config user.name 'TibiaMaps.io' | |
git config user.email '[email protected]' | |
git commit data/markers.json -m 'Import marker changes from Ricci’s client' | |
git push |