diff --git a/.github/instructions/makefile.instructions.md b/.github/instructions/makefile.instructions.md index 31fc017..c19bce7 100644 --- a/.github/instructions/makefile.instructions.md +++ b/.github/instructions/makefile.instructions.md @@ -5,5 +5,6 @@ applyTo: 'Makefile' # Makefile Conventions - Keep all targets sorted alphabetically. +- `help` target is the exception and should be the first target in the file. - targets should be separated by a one blank line only. - Each target should have a one-line description, starting with `##`, that describes what the target does. This description is used by the `help` target to generate documentation for all targets. diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f8d7f02..efcd9be 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,6 +13,7 @@ jobs: K8S_ENV: ${{ github.event.deployment.environment }} IMAGE_TAG: ${{ github.event.deployment.payload.tag }} METABLOCK_API_TOKEN: ${{ secrets.METABLOCK_API_TOKEN }} + METABLOCK_ORG_ID: ${{ secrets.METABLOCK_ORG_ID }} RUST_LOG: info steps: @@ -53,9 +54,8 @@ jobs: --set image.tag=${IMAGE_TAG} \ --wait - name: Update ingress configuration - uses: quantmind/metablock-ingress@v3 + uses: quantmind/metablock-ingress@v2 with: - token: ${{ secrets.METABLOCK_API_TOKEN }} space: quantmind path: dev/blocks - name: Update deployment status (success)