Continuous Delivery #114
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - main | |
| - "*.*.x" | |
| tags: | |
| - v* | |
| schedule: | |
| - cron: '0 0 * * *' | |
| name: Continuous Delivery | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| environment: continuous_delivery | |
| env: | |
| quay_org: fido-fdo | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Perform container builds | |
| id: build | |
| uses: ./.github/actions/build_containers | |
| - name: Push admin-cli to quay.io | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| registry: "quay.io/${{ env.quay_org }}" | |
| image: admin-cli | |
| tags: ${{ steps.build.outputs.tags }} | |
| username: ${{ secrets.QUAY_USERNAME }} | |
| password: ${{ secrets.QUAY_ROBOT_TOKEN }} | |
| - name: Push manufacturing-server to quay.io | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| registry: "quay.io/${{ env.quay_org }}" | |
| image: manufacturing-server | |
| tags: ${{ steps.build.outputs.tags }} | |
| username: ${{ secrets.QUAY_USERNAME }} | |
| password: ${{ secrets.QUAY_ROBOT_TOKEN }} | |
| - name: Push rendezvous-server to quay.io | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| registry: "quay.io/${{ env.quay_org }}" | |
| image: rendezvous-server | |
| tags: ${{ steps.build.outputs.tags }} | |
| username: ${{ secrets.QUAY_USERNAME }} | |
| password: ${{ secrets.QUAY_ROBOT_TOKEN }} | |
| - name: Push serviceinfo-api-server to quay.io | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| registry: "quay.io/${{ env.quay_org }}" | |
| image: serviceinfo-api-server | |
| tags: ${{ steps.build.outputs.tags }} | |
| username: ${{ secrets.QUAY_USERNAME }} | |
| password: ${{ secrets.QUAY_ROBOT_TOKEN }} | |
| - name: Push owner-onboarding-server to quay.io | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| registry: "quay.io/${{ env.quay_org }}" | |
| image: owner-onboarding-server | |
| tags: ${{ steps.build.outputs.tags }} | |
| username: ${{ secrets.QUAY_USERNAME }} | |
| password: ${{ secrets.QUAY_ROBOT_TOKEN }} | |
| - name: Push aio to quay.io | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| registry: "quay.io/${{ env.quay_org }}" | |
| image: aio | |
| tags: ${{ steps.build.outputs.tags }} | |
| username: ${{ secrets.QUAY_USERNAME }} | |
| password: ${{ secrets.QUAY_ROBOT_TOKEN }} | |
| - name: Push client-linuxapp to quay.io | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| registry: "quay.io/${{ env.quay_org }}" | |
| image: client-linuxapp | |
| tags: ${{ steps.build.outputs.tags }} | |
| username: ${{ secrets.QUAY_USERNAME }} | |
| password: ${{ secrets.QUAY_ROBOT_TOKEN }} |