1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- name: ci
- on:
- push:
- branches:
- - 'master'
- jobs:
- docker:
- runs-on: ubuntu-latest
- environment: main
- steps:
- -
- name: Checkout
- uses: actions/checkout@v3
- with:
- submodules: recursive
- -
- name: Set up QEMU
- uses: docker/setup-qemu-action@v2
- -
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v2
- -
- name: Login to DockerHub
- uses: docker/login-action@v1
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- -
- name: Build and push
- uses: docker/build-push-action@v2
- with:
- context: .
- platforms: linux/amd64,linux/arm64
- push: true
- tags: ftcaplan/matrix-stt-bot:latest
- -
- name: Build and push
- uses: docker/build-push-action@v2
- with:
- context: .
- platforms: linux/amd64,linux/arm64
- push: true
- tags: ftcaplan/matrix-stt-bot:tiny
- build-args: |
- "PRELOAD_MODEL=tiny"
- -
- name: Build and push
- uses: docker/build-push-action@v2
- with:
- context: .
- platforms: linux/amd64,linux/arm64
- push: true
- tags: ftcaplan/matrix-stt-bot:small
- build-args: |
- "PRELOAD_MODEL=small"
- -
- name: Build and push
- uses: docker/build-push-action@v2
- with:
- context: .
- platforms: linux/amd64,linux/arm64
- push: true
- tags: ftcaplan/matrix-stt-bot:medium
- build-args: |
- "PRELOAD_MODEL=medium"
- -
- name: Build and push
- uses: docker/build-push-action@v2
- with:
- context: .
- platforms: linux/amd64,linux/arm64
- push: true
- tags: ftcaplan/matrix-stt-bot:large
- build-args: |
- "PRELOAD_MODEL=large"
|