Skip to content

fix for commit_token() not called before compute_bias() #32

fix for commit_token() not called before compute_bias()

fix for commit_token() not called before compute_bias() #32

Workflow file for this run

name: Docker image
on:
push:
branches:
- 'main'
tags:
- 'v*' # version tags
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
if: startsWith(github.ref, 'refs/tags/v')
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/checkout@v4
with:
submodules: true
- run: ./docker/gh-cleanup.sh
- run: ./docker/build.sh
- run: ./docker/push.sh ${{ vars.DOCKERHUB_USERNAME }}/llgtrt
if: startsWith(github.ref, 'refs/tags/v')