generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update issue templates * v1.2.2 FLU GISAID update * V1.2.2 Version num Update * GitHub action test (#83) * Create DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update and rename DH_upload.yml to DH_GHCR_upload.yml * Update DH_GHCR_upload.yml * Delete .github/workflows/GHCR_docker.yml * Update DH_GHCR_upload.yml * V1.2.3 Update (#85) * GitHub action test (#83) (#84) * Create DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update DH_upload.yml * Update and rename DH_upload.yml to DH_GHCR_upload.yml * Update DH_GHCR_upload.yml * Delete .github/workflows/GHCR_docker.yml * Update DH_GHCR_upload.yml * Update BioSample/SRA handler to fix bug for one sample * Dev (#86) * Version num update * Version num update
- Loading branch information
1 parent
cc79948
commit 2eb6880
Showing
14 changed files
with
252 additions
and
75 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: Support my organism | ||
about: I want SeqSender to support my organism. | ||
title: "[ORGANISM : FEATURE / BUG]" | ||
labels: help wanted | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Have you attempted to upload your organism using SeqSender? If so, please list the organism affected. If not, please attempt using SeqSender with it first, as SeqSender currently supports a wide variety of organisms, databases, and submission options.** | ||
Be sure to check the Submission Wizard in the documentation for all the available customizations for submitting your samples to repositories. | ||
|
||
**Which databases are you uploading to? Are all of them affected? If not list which ones are affected:** | ||
BIOSAMPLE/SRA/GENBANK/GISAID | ||
|
||
**Is the problem related to a metadata field, an additional file, available submission options, or the submission process itself?** | ||
If the field is only an attribute, it can be added to any database even if not validated by SeqSender, by simply adding the correct column name with the database prefix. | ||
|
||
**If possible describe the solution you'd like to see along with any other additional details.** | ||
A clear and concise description of what you think needs to change/made available to resolve your issue. | ||
|
||
**Error Logs** | ||
Add any other context, logs, or screenshots related to the issue here. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Create and publish docker image to DockerHub and GitHub Container Repository | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
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:${{ github.ref_name }} | ||
cdcgov/seqsender:latest | ||
ghcr.io/cdcgov/seqsender:${{ github.ref_name }} | ||
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." |
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Oops, something went wrong.