-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from qbic-pipelines/fix/qpb-review
Fix/qpb review
- Loading branch information
Showing
15 changed files
with
125 additions
and
182 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,38 @@ | ||
name: Docker push of rtaratioconv to GHCR | ||
# This builds the docker image and pushes it to GHCR | ||
# Runs on qbic-pipelines repo releases and push event to 'dev' branch (PR merges) | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
push_github: | ||
name: Push new rtaratioconv image to GHCR | ||
runs-on: ubuntu-latest | ||
# Only run for the qbic-pipelines repo, for releases and merged PRs | ||
if: ${{ github.repository == 'qbic-pipelines/root-tissue-analysis' }} | ||
steps: | ||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build new docker image | ||
run: docker build --no-cache ./modules/local/ratioconv/ -t ghcr.io/qbic-pipelines/rtaratioconv:latest | ||
|
||
- name: Log in to registry | ||
# Update the personal access token to GITHUB_TOKEN | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | ||
|
||
- name: Push image to GHCR (dev) | ||
if: ${{ github.event_name == 'push' }} | ||
run: | | ||
docker tag ghcr.io/qbic-pipelines/rtaratioconv:latest ghcr.io/qbic-pipelines/rtaratioconv:dev | ||
docker push ghcr.io/qbic-pipelines/rtaratioconv:dev | ||
- name: Push image to GHCR (release) | ||
if: ${{ github.event_name == 'release' }} | ||
run: | | ||
docker tag ghcr.io/qbic-pipelines/rtaratioconv:latest ghcr.io/qbic-pipelines/rtaratioconv:${{ github.event.release.tag_name }} | ||
docker push ghcr.io/qbic-pipelines/rtaratioconv:${{ github.event.release.tag_name }} |
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,38 @@ | ||
name: Docker push of rtarootseg to GHCR | ||
# This builds the docker image and pushes it to GHCR | ||
# Runs on qbic-pipelines repo releases and push event to 'dev' branch (PR merges) | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
push_github: | ||
name: Push new rtarootseg image to GHCR | ||
runs-on: ubuntu-latest | ||
# Only run for the qbic-pipelines repo, for releases and merged PRs | ||
if: ${{ github.repository == 'qbic-pipelines/root-tissue-analysis' }} | ||
steps: | ||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build new docker image | ||
run: docker build --no-cache ./modules/local/rootseg/ -t ghcr.io/qbic-pipelines/rtarootseg:latest | ||
|
||
- name: Log in to registry | ||
# Update the personal access token to GITHUB_TOKEN | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | ||
|
||
- name: Push image to GHCR (dev) | ||
if: ${{ github.event_name == 'push' }} | ||
run: | | ||
docker tag ghcr.io/qbic-pipelines/rtarootseg:latest ghcr.io/qbic-pipelines/rtarootseg:dev | ||
docker push ghcr.io/qbic-pipelines/rtarootseg:dev | ||
- name: Push image to GHCR (release) | ||
if: ${{ github.event_name == 'release' }} | ||
run: | | ||
docker tag ghcr.io/qbic-pipelines/rtarootseg:latest ghcr.io/qbic-pipelines/rtarootseg:${{ github.event.release.tag_name }} | ||
docker push ghcr.io/qbic-pipelines/rtarootseg:${{ github.event.release.tag_name }} |
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,38 @@ | ||
name: Docker push of rtastat to GHCR | ||
# This builds the docker image and pushes it to GHCR | ||
# Runs on qbic-pipelines repo releases and push event to 'dev' branch (PR merges) | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
push_github: | ||
name: Push new rtastat image to GHCR | ||
runs-on: ubuntu-latest | ||
# Only run for the qbic-pipelines repo, for releases and merged PRs | ||
if: ${{ github.repository == 'qbic-pipelines/root-tissue-analysis' }} | ||
steps: | ||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build new docker image | ||
run: docker build --no-cache ./modules/local/rtastat/ -t ghcr.io/qbic-pipelines/rtastat:latest | ||
|
||
- name: Log in to registry | ||
# Update the personal access token to GITHUB_TOKEN | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | ||
|
||
- name: Push image to GHCR (dev) | ||
if: ${{ github.event_name == 'push' }} | ||
run: | | ||
docker tag ghcr.io/qbic-pipelines/rtastat:latest ghcr.io/qbic-pipelines/rtastat:dev | ||
docker push ghcr.io/qbic-pipelines/rtastat:dev | ||
- name: Push image to GHCR (release) | ||
if: ${{ github.event_name == 'release' }} | ||
run: | | ||
docker tag ghcr.io/qbic-pipelines/rtastat:latest ghcr.io/qbic-pipelines/rtastat:${{ github.event.release.tag_name }} | ||
docker push ghcr.io/qbic-pipelines/rtastat:${{ github.event.release.tag_name }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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