Skip to content

Fix WireGuard config and LDAP saving bugs (#2827) #1535

Fix WireGuard config and LDAP saving bugs (#2827)

Fix WireGuard config and LDAP saving bugs (#2827) #1535

Workflow file for this run

name: Build current image
permissions:
contents: read
id-token: write
packages: write
on:
push:
branches:
- main
- dev
- "release/**"
paths-ignore:
- "*.md"
- "LICENSE"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-current:
uses: ./.github/workflows/build-docker.yml
with:
tags: |
type=ref,event=branch
type=sha
trivy-exit-code: "0"
trigger-e2e:
needs: build-current
uses: ./.github/workflows/e2e.yml
secrets: inherit
trigger-dev-deploy:
needs: build-current
if: ${{ github.event_name != 'pull_request' && (github.ref_name == 'dev' || startsWith(github.ref_name, 'release/'))}}
uses: ./.github/workflows/dev-deployment.yml
secrets: inherit
trigger-staging-deploy:
needs: build-current
if: ${{ github.event_name != 'pull_request' && startsWith(github.ref_name, 'release/') }}
uses: ./.github/workflows/staging-deployment.yml
secrets: inherit