Skip to content

Fjerner avhengighet til syfosm-common-networking #1294

Fjerner avhengighet til syfosm-common-networking

Fjerner avhengighet til syfosm-common-networking #1294

Workflow file for this run

name: Dev
on:
push:
branches:
- master
- preprod/**
- dev/**
env:
IMAGE: ghcr.io/${{ github.repository }}/syfoinntektsmelding:${{ github.sha }}
jobs:
# Label of the container job
build_and_deploy:
# You must use a Linux environment when using service containers or container jobs
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
# Service containers to run with `container-job`
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres
ports:
# Maps tcp port 5432 on service container to the host
- 5432:5432
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
cache: gradle
- name: Cache Gradle wrapper
uses: actions/cache@v4
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-wrapper-
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-cache-${{ hashFiles('build.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-cache-
- name: test and build
run: ./gradlew test build
env:
ORG_GRADLE_PROJECT_githubUser: x-access-token
ORG_GRADLE_PROJECT_githubPassword: ${{ secrets.GITHUB_TOKEN }}
- name: Push docker image to GAR
uses: nais/docker-build-push@v0
id: docker-build-push
with:
team: helsearbeidsgiver
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }}
- name: Deploy to DEV
uses: nais/deploy/actions/deploy@v2
env:
CLUSTER: dev-gcp
RESOURCE: deploy/dev.yml
VAR: image=${{ steps.docker-build-push.outputs.image }}