Comment out public studio E2E tests for now #75
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: Migration | |
on: | |
push: | |
branches: | |
- migration-merge | |
jobs: | |
publish-migration: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
run: | | |
docker build -t bluebrain/nexus-web:migrate . | |
- name: Publish To DockerHub | |
run: | | |
echo ${{ secrets.DOCKER_PASS }} | docker login --username ${{ secrets.DOCKER_USER }} --password-stdin | |
docker push bluebrain/nexus-web:migrate | |