Fix L is not defined: expose Leaflet as window.L in polyfills #159
Workflow file for this run
This file contains hidden or 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: OVDB build | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| JWTSigningKey: ${{ secrets.JWTSigningKey }} | |
| UserAgent: ${{ secrets.UserAgent }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build the Docker image | |
| run: docker build . --file Dockerfile --tag jjasloot/ovdb:$(date +%Y%M%d) --tag jjasloot/ovdb:latest --build-arg JWTSigningKey --build-arg UserAgent | |
| - name: Docker login | |
| run: docker login -u ${{ secrets.DockerUsername}} -p${{secrets.DockerPassword}} | |
| - name: Docker push | |
| run: docker push jjasloot/ovdb | |