Bump serde_json from 1.0.119 to 1.0.120 #1741
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 Docker - Edge | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Publish to GH Registry | |
uses: elgohr/Publish-Docker-Github-Action@v4 | |
with: | |
name: tremor-rs/tremor-runtime/tremor | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.GHCR_PAT }} | |
tags: edge | |
registry: docker.pkg.github.com | |
- name: Publish to Docker Registry | |
uses: elgohr/Publish-Docker-Github-Action@v4 | |
with: | |
name: tremorproject/tremor | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
tags: edge |