Merge pull request #102 from DigiKlausur/dev #25
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: Hub | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
paths: | |
- .github/workflows/hub.yml | |
- hub/** | |
- ci/** | |
jobs: | |
build-and-publish-dev: | |
name: Deploy Dev | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && github.ref == 'refs/heads/dev' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GH_TOKEN }} | |
- name: Build and publish to ghcr.io | |
id: docker_deploy_ghcr | |
run: | | |
bash ci/build-and-deploy.sh --deployment dev --registry ghcr.io --image hub --publish latest | |
- name: Login to Quay Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_SECRET }} | |
- name: Build and publish to quay.io | |
id: docker_deploy_quay | |
run: | | |
bash ci/build-and-deploy.sh --deployment dev --registry quay.io --image hub --publish latest | |
build-and-publish-prod: | |
name: Deploy Prod | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GH_TOKEN }} | |
- name: Build and publish to ghcr.io | |
id: docker_deploy_ghcr | |
run: | | |
bash ci/build-and-deploy.sh --deployment prod --registry ghcr.io --image hub --publish latest | |
- name: Login to Quay Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_SECRET }} | |
- name: Build and publish to quay.io | |
id: docker_deploy_quay | |
run: | | |
bash ci/build-and-deploy.sh --deployment prod --registry quay.io --image hub --publish latest |