Hotfix // Remove double encoding of id to load resource correctly in … #91
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: Snapshot | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish-snapshot: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
timeout-minutes: 40 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
run: | | |
docker build -t bluebrain/nexus-web:latest . | |
- name: Publish To DockerHub | |
run: | | |
echo ${{ secrets.DOCKER_PASS }} | docker login --username ${{ secrets.DOCKER_USER }} --password-stdin | |
docker push bluebrain/nexus-web:latest |