Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/instructions/makefile.instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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)
Expand Down
Loading