Skip to content

Migrate to ghcr

Migrate to ghcr #274

Workflow file for this run

name: test-and-build
on:
push:
branches-ignore:
- development/**
- main/**
- q/*/**
jobs:
gradle_build_and_upload:
name: Gradle build and upload snapshot
uses: ./.github/workflows/gradle-build-and-upload.yml
secrets: inherit
docker-build:
name: Development docker image
uses: ./.github/workflows/docker-build.yml
secrets:
REGISTRY_LOGIN: ${{ secrets.REGISTRY_LOGIN }}

Check failure on line 20 in .github/workflows/test-and-build.yml

View workflow run for this annotation

GitHub Actions / test-and-build

Invalid workflow file

The workflow is not valid. .github/workflows/test-and-build.yml (Line: 20, Col: 23): Invalid secret, REGISTRY_LOGIN is not defined in the referenced workflow. .github/workflows/test-and-build.yml (Line: 21, Col: 26): Invalid secret, REGISTRY_PASSWORD is not defined in the referenced workflow.
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
code_coverage:
name: code coverage
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
name: codecov-osis