Skip to content

Commit

Permalink
fix: separate release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gabheadz committed Dec 8, 2024
1 parent ac8f506 commit b7a4ccb
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/release-streams.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Deploy image Async DataFlow channel streams
on:
push:
tags:
- 'streams_*' # Push events to matching streams_*, i.e. streams_1.5.0
jobs:
deploy:
defaults:
run:
working-directory: channel-streams
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d171c3b028d844f2bf14e9fdec0c58114451e4bf
- name: Docker Login
uses: Azure/docker-login@74280010feb87216b500bd8971cf1402e1165da2
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Config Builder
run: docker buildx create --name mbuilder && docker buildx use mbuilder
- name: Docker Build Multiplatform
run: docker buildx build --platform linux/amd64 -t bancolombia/async-dataflow-channel-streams:${GITHUB_REF##*_} --push .
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
- name: Config Builder
run: docker buildx create --name mbuilder && docker buildx use mbuilder
- name: Docker Build Multiplatform
run: docker buildx build --platform linux/amd64 -t bancolombia/async-dataflow-channel-sender:${GITHUB_REF##*/} --push .
run: docker buildx build --platform linux/amd64 -t bancolombia/async-dataflow-channel-sender:${GITHUB_REF##*_} --push .

0 comments on commit b7a4ccb

Please sign in to comment.