Skip to content

Commit

Permalink
Fix docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
rasa-aadlv committed Dec 18, 2024
1 parent 88db541 commit ad4be7e
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Release artifacts

on:
push:
branches:
- release-fix-11.0.3

jobs:
release-artifacts-docker:
name: Release Artifacts Docker
runs-on: ubuntu-24.04

steps:
- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: 3.11.0

- name: Set up QEMU
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@0d103c3126aa41d772a8362f6aa67afac040f80c # v3.1.0

- name: Login to Docker Hub Registry 🔢
run: echo ${{ secrets.DOCKER_HUB_PASSWORD }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin || true

- name: Build and Push Docker image 📦
run: |
IMAGE_NAME=rasa/rasa-sdk
IMAGE_TAG=$IMAGE_TAG
make build-and-push-multi-platform-docker
env:
IMAGE_TAG: 3.11.0

0 comments on commit ad4be7e

Please sign in to comment.