Skip to content

chore: Try to fix js tests by reverting to checkout v3 (https://githu… #282

chore: Try to fix js tests by reverting to checkout v3 (https://githu…

chore: Try to fix js tests by reverting to checkout v3 (https://githu… #282

Workflow file for this run

name: alpha
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
context: ./
file: ./Dockerfile
provenance: false
push: true
platforms: linux/amd64
tags: "${{ secrets.DOCKER_HUB_PREFIX }}/convos:alpha"
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}