Skip to content

replace _id with id for userembedding #34

replace _id with id for userembedding

replace _id with id for userembedding #34

Workflow file for this run

name: Update R4 Rank
on:
workflow_dispatch:
push:
branches:
- "main"
tags:
- "v*"
jobs:
update_sdk:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: get latest tag
uses: "WyriHaximus/github-action-get-previous-tag@v1"
id: get-latest-tag
with:
fallback: latest
- name: Build the docker Docker image
run: |
docker build . -f Dockerfile.r4rank --tag beclab/r4rank:${{ steps.get-latest-tag.outputs.tag }}
docker push beclab/r4rank:${{ steps.get-latest-tag.outputs.tag }}