Skip to content

Commit

Permalink
Add workflow to create a release
Browse files Browse the repository at this point in the history
  • Loading branch information
jriguera committed Mar 20, 2024
1 parent a87af74 commit 5441073
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release-final-boshrelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release Bosh Release

on:
workflow_dispatch: { }
push:
branches:
- "main"

env:
# Default image for the Chart
DOCKER_IMAGE_NAME: mimirrules-controller
DOCKER_REGISTRY: ghcr.io/springernature/o11y-rules-telemetry-operator
DOCKER_BUILD_DIR: '.'

permissions: {}

jobs:
make:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true

- name: Create final bosh release
uses: orange-cloudfoundry/bosh-release-action@v2
with:
target_branch: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5441073

Please sign in to comment.