Align redis error handling with changed api #4
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: publish | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
publish-manager: | |
name: Build / Manager | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
push: false | |
build-args: PROJECT=manager | |
publish-router: | |
name: Build / Router | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
push: false | |
build-args: PROJECT=router |