Application Deployment #24
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: Application Deployment | |
on: | |
workflow_run: | |
workflows: | |
- "Application E2E Tests" | |
types: | |
- completed | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch }} | |
cancel-in-progress: true | |
jobs: | |
push_to_registry: | |
name: Push to registry | |
if: ${{ github.event.workflow_run.conclusion == 'success' && !contains(github.ref, 'dependabot') }} | |
runs-on: ubuntu-22.04 | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
steps: | |
- name: Initialize job status check | |
id: initialize_job_status_check | |
uses: LouisBrunner/[email protected] | |
with: | |
details_url: "https://github.com/MTES-MCT/monitorfish/actions/runs/${{ github.run_id }}/job/${{ github.job_id }}" | |
name: Application Deployment | |
sha: ${{ github.event.push.head_commit.id }} | |
status: in_progress | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check Unit Tests status | |
id: check_unit_tests_status | |
uses: LASER-Yi/[email protected] | |
with: | |
branch: ${{ github.event.workflow_run.head_branch }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
workflow: application_unit_tests.yml | |
- name: Checkout | |
if: ${{ steps.check_unit_tests_status.outputs.conclusion == 'success' }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.workflow_run.head_commit.id }} | |
- name: Set version and environment profile | |
if: ${{ steps.check_unit_tests_status.outputs.conclusion == 'success' }} | |
uses: ./.github/actions/set-version-and-environment-profile | |
- name: Download image | |
if: ${{ steps.check_unit_tests_status.outputs.conclusion == 'success' }} | |
uses: ishworkh/[email protected] | |
with: | |
commit_sha: ${{ github.event.workflow_run.head_commit.id }} | |
image: monitorfish-app:${{ env.VERSION }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
workflow: "Application Build" | |
- name: Push docker image to registry | |
if: ${{ steps.check_unit_tests_status.outputs.conclusion == 'success' }} | |
continue-on-error: true | |
id: push_docker_image | |
run: | | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${GITHUB_ACTOR} --password-stdin | |
make docker-tag | |
make docker-push | |
- uses: LouisBrunner/[email protected] | |
if: ${{ always() }} | |
with: | |
check_id: ${{ steps.initialize_job_status_check.outputs.check_id }} | |
conclusion: ${{ steps.push_docker_image.outcome }} | |
details_url: "https://github.com/MTES-MCT/monitorfish/actions/runs/${{ github.run_id }}/job/${{ github.job_id }}" | |
sha: ${{ github.event.workflow_run.head_commit.id }} | |
status: completed | |
token: ${{ secrets.GITHUB_TOKEN }} |