Skip to content

Commit

Permalink
Merge pull request #113 from tattle-made/hotfix
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
duggalsu authored Mar 4, 2024
2 parents 4ae4219 + 9e11c03 commit 9de3594
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/docker-push-audiovec-worker-staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publish Audio Worker to Dockerhub for Staging

on: workflow_dispatch

jobs:
api:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: development
- name: "Setup Node version"
uses: actions/setup-node@v4
with:
node-version: 20.9.0
- name: Declare some variables
id: vars
shell: bash
run: |
echo "setting variables"
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- uses: elgohr/Publish-Docker-Github-Action@main
with:
username: tattletech
password: ${{ secrets.DOCKER_PASSWORD }}
name: tattletech/feluda-operator-audiovec
workdir: src/
dockerfile: worker/audiovec/Dockerfile.audio_worker
tags: worker-latest-amd64
platforms: linux/amd64

0 comments on commit 9de3594

Please sign in to comment.