fix(studies): Correct graphs year #1855
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
| name: Staging deployment | |
| on: | |
| push: | |
| branches: | |
| - staging | |
| env: | |
| # Must match k8s deployment name | |
| DEPLOYMENT: bso-ui | |
| DEPLOYMENT_NAMESPACE: bso | |
| DEPLOYMENT_URL: https://bso.staging.dataesr.ovh | |
| MM_NOTIFICATION_CHANNEL: bots | |
| jobs: | |
| publish-ghcr: | |
| name: π Publish Docker image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π Checkout | |
| uses: actions/checkout@v4 | |
| - name: π·οΈ Get tag | |
| id: tag | |
| run: echo "tag=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT | |
| - name: π Login Docker | |
| run: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} | |
| - name: π Build Docker image | |
| run: | | |
| IMAGE_ID=ghcr.io/${{ github.repository }} | |
| IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | |
| docker build -f Dockerfile-staging -t $IMAGE_ID:${{ steps.tag.outputs.tag }} . | |
| - name: π¦ Push Docker image | |
| run: | | |
| IMAGE_ID=ghcr.io/${{ github.repository }} | |
| IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | |
| docker push -a $IMAGE_ID | |
| deploy: | |
| name: β¨ Update staging deployment | |
| runs-on: ubuntu-latest | |
| needs: publish-ghcr | |
| steps: | |
| - name: Deploy to Cluster | |
| id: kubectl-deploy | |
| uses: dataesr/kubectl-deploy@v1.1 | |
| env: | |
| KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_DOAD }} | |
| with: | |
| namespace: ${{ env.DEPLOYMENT_NAMESPACE }} | |
| restart: ${{ env.DEPLOYMENT }} | |
| notify: | |
| name: π’ Mattermost notification | |
| needs: deploy | |
| if: always() | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: dataesr/mm-notifier-action@v1.0.2 | |
| with: | |
| deployment_url: ${{ env.DEPLOYMENT_URL }} | |
| github_token: ${{ secrets.GITHUB_TOKEN}} | |
| mattermost_webhook_url: ${{ secrets.MATTERMOST_WEBHOOK_URL }} | |
| mattermost_channel: ${{ env.MM_NOTIFICATION_CHANNEL}} |