Skip to content

cleanup: remove trailing line #6

cleanup: remove trailing line

cleanup: remove trailing line #6

Workflow file for this run

name: Publish Package to GitHub Packages
on:
push:
tags:
- "*"
jobs:
test:
name: Run tests
uses: ctrl-hub/infra.github-actions/.github/workflows/ci-kotlin-test.yaml@v8

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yaml" -> "ctrl-hub/infra.github-actions/.github/workflows/ci-kotlin-test.yaml@v8" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
build:
name: Build and Publish Artifact
runs-on: ubuntu-latest
env:
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
permissions:
contents: read
packages: write
steps:
- name: Checkout code with Git
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Kotlin
uses: actions/setup-java@v4
with:
distribution: 'jetbrains'
java-version: 21
cache: gradle
- name: Build and Publish Artifact
run: ./gradlew clean publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}