feat: CQDG-849 implement quick filter (#325) #336
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: Publish Image Using Commit Hash | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish_qa: | |
name: Publish QA Image | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set the QA configuration file | |
run: mv env-qa .env | |
- name: Push the image on the docker registry | |
uses: Ferlab-Ste-Justine/action-push-image@v2 | |
with: | |
username: ${{ secrets.FERLAB_DOCKER_HUB_USER }} | |
password: ${{ secrets.FERLAB_DOCKER_HUB_TOKEN }} | |
image: ferlabcrsj/cqdg-portal-ui | |
tag_format: "qa-{sha}-{timestamp}" | |
publish_qa_juno: | |
name: Publish QA-Juno Image | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set the QA-Juno configuration file | |
run: mv env-qa .env | |
- name: Push the image on the docker registry | |
uses: Ferlab-Ste-Justine/action-push-image@v2 | |
with: | |
username: ${{ secrets.FERLAB_DOCKER_HUB_USER }} | |
password: ${{ secrets.FERLAB_DOCKER_HUB_TOKEN }} | |
image: ferlabcrsj/cqdg-portal-ui | |
tag_format: "qa-juno-{sha}-{timestamp}" |