Initial code checkin #46
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: Build Rucio/Butler ingestd container | |
on: | |
push: | |
tags: | |
- v* | |
pull_request: | |
env: | |
INGESTD_NAME: ctrl_ingestd | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build ingest image | |
working-directory: docker | |
run: | | |
docker-compose -f "docker-compose.yml" --env-file versions.env build ingestd | |
- name: Log in to GitHub Container Registry | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | |
- name: Push image | |
run: | | |
INGESTD_ID=ghcr.io/${{ github.repository_owner }}/$INGESTD_NAME | |
VERSION=$(cat docker/versions.env | grep CTRL_INGESTD_VERSION | sed 's/=/ /g' |cut -d " " -f2) | |
echo INGESTD_ID=$INGESTD_ID | |
echo VERSION=$VERSION | |
docker tag $INGESTD_NAME $INGESTD_ID:$VERSION | |
docker push $INGESTD_ID:$VERSION |