run as root #3
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 Image CI pangeo | |
env: | |
IMAGE_NAME: pangeo | |
IMAGE_TAG: 2024.10.19 | |
on: | |
workflow_dispatch: null | |
push: | |
branches: main | |
paths: | |
- 'draft_images/pangeo/**' | |
- '.github/workflows/docker-image-pangeo.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login to GitHub Container Registry | |
if: github.repository == 'nmfs-opensci/container-images' | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: Build the Docker image | |
if: github.repository == 'nmfs-opensci/container-images' | |
run: | | |
docker build draft_images/$IMAGE_NAME -f draft_images/$IMAGE_NAME/Dockerfile --tag ghcr.io/nmfs-opensci/container-images/$IMAGE_NAME:$IMAGE_TAG --tag ghcr.io/nmfs-opensci/container-images/$IMAGE_NAME:latest | |
- name: Publish | |
if: github.repository == 'nmfs-opensci/container-images' | |
run: | | |
docker push ghcr.io/nmfs-opensci/container-images/$IMAGE_NAME:$IMAGE_TAG | |
docker push ghcr.io/nmfs-opensci/container-images/$IMAGE_NAME:latest |