Skip to content

library entry save data #21

library entry save data

library entry save data #21

name: Update argoTask
on:
workflow_dispatch:
push:
branches:
- "main"
tags:
- "v*"
jobs:
update_argotask:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- 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 the docker Docker image
run: |
docker build . -f Dockerfile.argotask --tag beclab/recommend-argotask:${{ steps.get-latest-tag.outputs.tag }}
docker push beclab/recommend-argotask:${{ steps.get-latest-tag.outputs.tag }}