Add iacuc function to utils (#480) #9
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: Publish dev docker image | |
| on: | |
| push: | |
| branches: | |
| - "dev" | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Compute new docker image tag | |
| run: | | |
| echo "sha_short=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV" | |
| echo "branch=$(echo ${GITHUB_REF_NAME})" >> "$GITHUB_ENV" | |
| echo "docker_tag=$(echo dev)-$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV" | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v2 | |
| - name: Login to Github Packages | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build image and push to GitHub Container Registry | |
| uses: docker/build-push-action@v3 | |
| with: | |
| # relative path to the place where source code with Dockerfile is located | |
| context: . | |
| push: true | |
| tags: | | |
| ghcr.io/allenneuraldynamics/aind-metadata-mapper:${{ env.docker_tag }} |