From 34018ae7ebc15e61bf33abb3acfb07d372ba5b4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Mon, 24 Apr 2023 08:28:44 +0200 Subject: [PATCH] chore: disable event-store deployments --- .github/workflows/event-store.yml | 38 ------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/event-store.yml diff --git a/.github/workflows/event-store.yml b/.github/workflows/event-store.yml deleted file mode 100644 index 790344957..000000000 --- a/.github/workflows/event-store.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Event Store - -concurrency: - group: event-store - cancel-in-progress: true - -on: - push: - tags: - - '*standardnotes/event-store*' - workflow_dispatch: - -jobs: - call_server_application_workflow: - name: Server Application - uses: standardnotes/server/.github/workflows/common-server-application.yml@main - with: - service_name: event-store - workspace_name: "@standardnotes/event-store" - deploy_web: false - package_path: packages/event-store - secrets: inherit - - newrelic: - needs: call_server_application_workflow - - runs-on: ubuntu-latest - - steps: - - name: Create New Relic deployment marker for Worker - uses: newrelic/deployment-marker-action@v1 - with: - accountId: ${{ secrets.NEW_RELIC_ACCOUNT_ID }} - apiKey: ${{ secrets.NEW_RELIC_API_KEY }} - applicationId: ${{ secrets.NEW_RELIC_APPLICATION_ID_EVENT_STORE_PROD }} - revision: "${{ github.sha }}" - description: "Automated Deployment via Github Actions" - user: "${{ github.actor }}"