Endre hvordan vi sjekker at PRs kommer fra dependabot #12
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: Publish to GitHub Package Repository | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Java and build | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- uses: gradle/[email protected] | |
- uses: gradle/[email protected] | |
env: | |
# Eksluder test dependencies | |
DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS: compileClasspath|runtimeClasspath | |
with: | |
gradle-version: wrapper | |
dependency-graph: generate-and-submit | |
arguments: --configuration-cache test | |
release: | |
name: Create Release | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set release tag | |
run: | | |
export TAG_NAME="$(TZ="Europe/Oslo" date +%Y%m%d).$(echo $GITHUB_RUN_NUMBER).$(echo $GITHUB_SHA | cut -c 1-6)" | |
echo "RELEASE_TAG=$TAG_NAME" >> $GITHUB_ENV | |
- uses: ncipollo/release-action@v1 #6c75be85e571768fa31b40abf38de58ba0397db5 # ratchet:ncipollo/release-action@v1 | |
with: | |
tag: ${{ env.RELEASE_TAG }} | |
generateReleaseNotes: true | |
outputs: | |
tag: ${{ env.RELEASE_TAG }} | |
publish: | |
runs-on: ubuntu-latest | |
needs: release | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17.x | |
cache: 'gradle' | |
- name: publish | |
run: ./gradlew -Pversion="$(echo ${{ needs.release.outputs.tag }})" publish | |
env: | |
ORG_GRADLE_PROJECT_githubUser: x-access-token | |
ORG_GRADLE_PROJECT_githubPassword: ${{ secrets.GITHUB_TOKEN }} | |
publish-docs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Build documentation | |
run: ./gradlew dokkaHtml | |
- name: Deploy KDocs | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build/dokka/html |