fix(alias): encode path again to match the alias in database #4
Workflow file for this run
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: Push DB migration image | |
on: | |
# not a problem if we do it at every push because it will check if the image already exists | |
push: | |
jobs: | |
docker-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: serlo/configure-repositories/actions/setup-node@main | |
- uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: '${{ secrets.GCP_KEY_CONTAINER_REGISTRY }}' | |
- run: gcloud auth configure-docker | |
- uses: google-github-actions/setup-gcloud@v2 | |
- run: yarn migrate:push-image |