Skip to content

Update DH_GHCR_upload.yml #2

Update DH_GHCR_upload.yml

Update DH_GHCR_upload.yml #2

Workflow file for this run

name: Create and publish docker image to DockerHub and GitHub Container Repository
on:
push:
branches: github-action-test
jobs:
push_to_registry:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
attestations: write
id-token: write
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log into GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
cdcgov/seqsender
ghcr.io/${{ github.repository }}
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: |
"cdcgov/seqsender:v1.2.2"
"cdcgov/seqsender:latest"
"ghcr.io/cdcgov/seqsender:v1.2.2"
"ghcr.io/cdcgov/seqsender:latest"
labels: "Genomic sequence pipeline to automate the process of generating necessary submission files and batch uploading them to public databases."