chore(main): release 0.29.1 #898
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
# Copyright 2024 Defense Unicorns | |
# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial | |
name: Slim Dev | |
# This workflow is triggered on pull requests | |
on: | |
pull_request: | |
# milestoned is added here as a workaround for release-please not triggering PR workflows (PRs should be added to a milestone to trigger the workflow). | |
types: [milestoned, opened, reopened, synchronize] | |
paths: | |
- src/pepr/** | |
- src/keycloak/** | |
- src/authservice/** | |
- src/istio/** | |
- src/prometheus-stack/** | |
- packages/base/** | |
- packages/identity-authorization/** | |
- bundles/k3d-slim-dev/** | |
- .github/workflows/slim-dev** | |
- "!**/*.md" | |
- "!**.jpg" | |
- "!**.png" | |
- "!**.gif" | |
- "!**.svg" | |
# Permissions for the GITHUB_TOKEN used by the workflow. | |
permissions: | |
id-token: write # Needed for OIDC-related operations. | |
contents: read # Allows reading the content of the repository. | |
pull-requests: read # Allows reading pull request metadata. | |
# Default settings for all run commands in the workflow jobs. | |
defaults: | |
run: | |
shell: bash -e -o pipefail {0} # Ensures that scripts fail on error and pipefail is set. | |
# Abort prior jobs in the same workflow / PR | |
concurrency: | |
group: test-slim-dev-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# This job runs the slim-dev bundle create/deploy process. | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: Environment setup | |
uses: ./.github/actions/setup | |
- name: Deploy Slim Dev Bundle | |
run: uds run slim-dev --no-progress | |
- name: Debug Output | |
if: ${{ always() }} | |
uses: ./.github/actions/debug-output | |
- name: Save logs | |
if: always() | |
uses: ./.github/actions/save-logs | |
with: | |
suffix: -slim-dev |