Remove outdated migration documentation #531
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: Docker Release | |
# | |
#on: | |
# push: | |
# branches: | |
# - 'main' | |
# | |
#jobs: | |
# latest: | |
# runs-on: ubuntu-latest | |
# steps: | |
# | |
# - uses: actions/checkout@v2 | |
# with: | |
# fetch-depth: 0 | |
# | |
# - name: Login to GitHub Container Registry | |
# uses: docker/login-action@v1 | |
# with: | |
# registry: ghcr.io | |
# username: ${{ github.repository_owner }} | |
# password: ${{ secrets.GITHUB_TOKEN }} | |
# | |
# - name: Build docker image | |
# run: DOCKER_BUILDKIT=1 docker build --progress=plain -t ghcr.io/${GITHUB_REPOSITORY}/${GITHUB_REF##*/} . | |
# | |
# - name: Tag image | |
# run: docker tag ghcr.io/${GITHUB_REPOSITORY}/${GITHUB_REF##*/} ghcr.io/mne-tools/mne-nirs/image | |
# | |
# - name: Push image to github | |
# run: docker push ghcr.io/mne-tools/mne-nirs/image:main |