-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from navikt/felles-github-actions
Felles GitHub actions
- Loading branch information
Showing
3 changed files
with
28 additions
and
80 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,15 @@ | ||
name: Build and Deploy | ||
name: Bygg og publiser pakke på GitHub Packages | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
build: | ||
name: Build and test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
java-version: '21' | ||
distribution: 'temurin' | ||
cache: 'gradle' | ||
|
||
- uses: gradle/actions/setup-gradle@v3 | ||
with: | ||
arguments: build | ||
|
||
- name: Post build failures to Slack | ||
if: failure() | ||
run: | | ||
curl -X POST --data "{\"text\": \"Build av $GITHUB_REPOSITORY feilet - $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID\"}" $WEBHOOK_URL | ||
env: | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
|
||
release: | ||
name: Create Release | ||
needs: build | ||
runs-on: ubuntu-latest | ||
build_and_deploy: | ||
name: "Opprett og publiser leveranse på GitHub Packages" | ||
uses: navikt/tilleggsstonader/.github/workflows/java-build-and-publish-release.yml@main | ||
secrets: inherit | ||
permissions: | ||
contents: write | ||
packages: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set release tag | ||
run: | | ||
export TAG_NAME="$(TZ="Europe/Oslo" date +%Y.%m.%d-%H.%M).$(git rev-parse --short=12 HEAD)" | ||
echo "RELEASE_TAG=$TAG_NAME" >> $GITHUB_ENV | ||
#- name: Set changelog | ||
# id: changelog | ||
# # (Escape newlines see https://github.com/actions/create-release/issues/25) | ||
# run: | | ||
# text="$(git --no-pager log $(git describe --tags --abbrev=0)..HEAD --pretty=format:"%h %s")" | ||
# echo "::set-output name=CHANGELOG::$text" | ||
|
||
- name: Create release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
name: Release ${{ env.RELEASE_TAG }} | ||
tag_name: ${{ env.RELEASE_TAG }} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Publish | ||
uses: gradle/actions/setup-gradle@v3 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
arguments: -Pversion=${{ env.RELEASE_TAG }} publish | ||
|
||
- name: Post release failures to Slack | ||
if: failure() | ||
run: | | ||
curl -X POST --data "{\"text\": \"Release av $GITHUB_REPOSITORY feilet - $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID\"}" $WEBHOOK_URL | ||
env: | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,10 @@ | ||
name: Pull Request | ||
name: Bygg app og kjør tester | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Build and test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
java-version: '21' | ||
distribution: 'temurin' | ||
cache: 'gradle' | ||
|
||
- uses: gradle/actions/setup-gradle@v3 | ||
with: | ||
arguments: build | ||
name: "Bygger prosjektet, sjekker linting og kjører testene" | ||
uses: navikt/tilleggsstonader/.github/workflows/java-build-and-test.yml@main |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Send inn avhengighetsgraf til GitHub Security | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "**.gradle.kts" | ||
- "gradle.properties" | ||
|
||
jobs: | ||
submit-dependency-graph: | ||
name: "Genererer opp avhengighetsgraf og sender den til GHAS" | ||
uses: navikt/tilleggsstonader/.github/workflows/submit-dependency-graph.yml@main | ||
permissions: | ||
contents: "write" # Kreves av Dependency Submission API-et |