Skip to content

feat: add eslint (#8) #6

feat: add eslint (#8)

feat: add eslint (#8) #6

Workflow file for this run

name: Release
on:
push:
branches: ["main"]
tags: ["**"]
jobs:
lint:
uses: "./.github/workflows/callable/lint.yml"

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

invalid value workflow reference: workflows must be defined at the top level of the .github/workflows/ directory
build:
uses: "./.github/workflows/callable/build.yml"
needs: ["lint"]
publish-to-ghcr:
needs: ["build"]
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Build and publish a Docker image for ${{ github.repository }}
uses: macbre/push-to-ghcr@master
with:
image_name: ${{ github.repository }}
github_token: ${{ secrets.GITHUB_TOKEN }}