ioc: reorder stages to improve portability. #35
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: Base image build | |
on: | |
push: | |
tags-ignore: | |
branches: | |
- main | |
pull_request: | |
env: | |
TAG: ${{ github.event_name == 'push' && github.ref_name || github.head_ref }} | |
jobs: | |
build_and_push: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build image | |
run: cd base && JOBS=$(nproc) docker compose build | |
- name: Log in to registry | |
if: github.event_name == 'push' | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | |
- name: Push tagged image | |
if: github.event_name == 'push' && github.ref_type == 'tag' | |
run: docker push ghcr.io/cnpem/lnls-debian-11-epics-7:$TAG | |
- name: Push latest image | |
if: github.event_name == 'push' && github.ref_type == 'branch' | |
run: docker tag ghcr.io/cnpem/lnls-debian-11-epics-7:$TAG ghcr.io/cnpem/lnls-debian-11-epics-7:latest && docker push ghcr.io/cnpem/lnls-debian-11-epics-7:latest |