Skip to content

chore: rename actions #7

chore: rename actions

chore: rename actions #7

Workflow file for this run

name: publish
on:
push:
branches:
- master
jobs:
build:
uses: ./build

Check failure on line 10 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

invalid value workflow reference: no version specified
publish:
runs-on: ubuntu-latest
needs: build
if: needs.build.result == 'success'
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.AMN_PAT }}
- name: Build the chronos Docker image
run: |
docker build -f Dockerfile.chronos . --tag ghcr.io/kindredgroup/chronos:latest
docker push ghcr.io/kindredgroup/chronos:latest