Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelien committed Mar 22, 2024
1 parent 2c36940 commit 130a14e
Showing 1 changed file with 7 additions and 41 deletions.
48 changes: 7 additions & 41 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,50 +1,16 @@
name: Deploy

on:
push:
branches: [master]
workflow_dispatch:
workflow_run:
branches: [master]
workflows: ["Update data"]
types:
- completed

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
types: [completed]

jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3
with:
repository: ${{ github.repository_owner }}/equalstreetnames
persist-credentials: false
- run: git submodule update --init website
- run: git submodule update --init cities/germany/leipzig
- run: npm install
working-directory: website
- run: npm run build:germany:leipzig
working-directory: website
env:
MAPBOX_TOKEN: ${{ secrets.MAPBOX_TOKEN }}
- uses: actions/upload-pages-artifact@v1
with:
path: website/dist/germany/leipzig

deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: EqualStreetNames/equalstreetnames/.github/workflows/reusable-deploy.yml@master
secrets: inherit
with:
country: germany
city: leipzig

0 comments on commit 130a14e

Please sign in to comment.