fix: remove conflicting pnpm version #33
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: Docker Image CI (GrandTour Datasets) | |
| on: | |
| push: | |
| branches: ['dev'] | |
| jobs: | |
| dev-build: | |
| environment: 'BuildEnv' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - working-directory: . | |
| name: Build the Docker compose | |
| run: docker compose -f docker-compose.dev.yml build | |
| env: | |
| BACKEND_URL: ${{ vars.BACKEND_URL_DEV }} | |
| GIT_BRANCH: ${{ github.ref_name }} | |
| GIT_COMMIT: ${{ github.sha }} | |
| - working-directory: . | |
| name: push the docker image | |
| run: docker compose -f docker-compose.dev.yml push api-server frontend queue-consumer documentation artifact-uploader |