Bump rexml from 3.3.6 to 3.3.9 (#4405) #342
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: Deploy to Staging | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build_and_push_image: | |
name: Build and Push Image | |
uses: zooniverse/ci-cd/.github/workflows/build_and_push_image.yaml@main | |
with: | |
repo_name: panoptes | |
commit_id: ${{ github.sha }} | |
latest: true | |
db_migration_staging: | |
name: Staging DB Migration | |
uses: zooniverse/ci-cd/.github/workflows/db_migration.yaml@main | |
needs: build_and_push_image | |
with: | |
app_name: panoptes | |
environment: staging | |
commit_id: ${{ github.sha }} | |
secrets: | |
creds: ${{ secrets.AZURE_AKS }} | |
deploy_staging: | |
name: Deploy to Staging | |
uses: zooniverse/ci-cd/.github/workflows/deploy_app.yaml@main | |
needs: [build_and_push_image, db_migration_staging] | |
with: | |
app_name: panoptes | |
repo_name: panoptes | |
commit_id: ${{ github.sha }} | |
environment: staging | |
secrets: | |
creds: ${{ secrets.AZURE_AKS }} | |
slack_notification: | |
name: Slack notification | |
uses: zooniverse/ci-cd/.github/workflows/slack_notification.yaml@main | |
needs: deploy_staging | |
if: always() | |
with: | |
commit_id: ${{ github.sha }} | |
job_name: Build and Push Image / build_and_push_image | |
status: ${{ needs.deploy_staging.result }} | |
title: "Panoptes Staging deploy & migration complete" | |
title_link: "https://panoptes-staging.zooniverse.org" | |
secrets: | |
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }} |