Skip to content

doc: change git repository name in readme #22

doc: change git repository name in readme

doc: change git repository name in readme #22

Workflow file for this run

name: Gateway
on:
workflow_dispatch:
push:
branches:
- "main"
- "dev_wrx"
tags:
- 'v*'
jobs:
update_server:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-go@v2
with:
go-version: 1.18.3
- 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 and push
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
push: true
tags: beclab/search2-gateway:${{ steps.get-latest-tag.outputs.tag }}