Skip to content

Update actions/checkout digest to 692973e #496

Update actions/checkout digest to 692973e

Update actions/checkout digest to 692973e #496

name: Docker build (dev)
on:
push:
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Build dev containers
run: docker-compose -f compose-dev.yml build cbioportal
- name: Build dev cbioproxy
run: docker-compose -f compose-dev.yml build cbioproxy
- name: Login to Docker registry
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push cbioportal
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: docker-compose -f compose-dev.yml push cbioportal
- name: Push cbioproxy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: docker-compose -f compose-dev.yml push cbioproxy