From 7979aee2a5f1218688a2540bee955008b84bca85 Mon Sep 17 00:00:00 2001 From: Dakota Howard <58985143+dthoward96@users.noreply.github.com> Date: Wed, 25 Sep 2024 16:33:23 -0400 Subject: [PATCH] Create DH_upload.yml --- .github/workflows/DH_upload.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/DH_upload.yml diff --git a/.github/workflows/DH_upload.yml b/.github/workflows/DH_upload.yml new file mode 100644 index 00000000..c065b67b --- /dev/null +++ b/.github/workflows/DH_upload.yml @@ -0,0 +1,33 @@ +name: Create and publish docker image to DockerHub + +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 in to Docker Hub + uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + with: + images: cdcgov/seqsender + + - uses: actions/checkout@v4 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag ${{ steps.meta.outputs.tags }}