github-actions: bump mikepenz/gradle-dependency-submission #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build Kotlin, Run Lint and Test' | |
on: | |
push: | |
branches: | |
- '**' # Build all branches | |
tags-ignore: | |
- '**' # Don't build any tags | |
workflow_dispatch: | |
jobs: | |
build: | |
name: 'Build with Gradle' | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: write | |
env: | |
ORG_GRADLE_PROJECT_githubUser: x-access-token | |
ORG_GRADLE_PROJECT_githubPassword: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build kotlin, and run tests/lint | |
uses: navikt/sosialhjelp-ci/actions/build-kotlin@v2 |