Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix overpass #229

Merged
merged 2 commits into from
Sep 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/frontend-overpass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,30 +33,28 @@ jobs:
uses: actions/checkout@v2
with:
repository: OpenHistoricalMap/overpass-turbo
ref: 43d1d9aa7e8bbb7152c89354900fdd327f9f7ffe
ref: a8e83de61050f257ca05c299f3f75da7f8391398
# token: ${{env.DEV_GITHUB_TOKEN}}

- name: Use Node.js 12
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 16

- name: Install modules
run: |
rm -rf node_modules
rm package-lock.json
npm cache clean --force
npm cache verify
npm install
yarn install --no-progress --frozen-lockfile

- name: Build frontend
run: |
sed -i -e 's/overpass-api.openhistoricalmap.org/'${OVERPASS_API}'/g' js/configs.js
npm run build
yarn build

- uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.10'

- name: Install aws cli
run: |
Expand Down