Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Change action trigger for debugging #1

Change action trigger for debugging

Change action trigger for debugging #1

Workflow file for this run

name: Deploy Docker
# Run workflow on tags starting with v (eg. v2, v1.2.0)
on:
push:
branches:
- main
jobs:
build-deploy~:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: registry.rostlab.org
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v4
with:
push: true
tags:
- registry.rostlab.org/rostlab/tmvisdb:${{ github.ref }}

Check failure on line 26 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Deploy Docker

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 26, Col: 13): A sequence was not expected .github/workflows/main.yml (Line: 29, Col: 13): A sequence was not expected
- registry.rostlab.org/rostlab/tmvisdb:latest
build-args:
- GIT_HASH=${{ GITHUB_SHA }}