Checkout blobs #2
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
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: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
lfs: true | |
- name: Checkout LFS blobs | |
run: git lfs checkout | |
- name: Create final bosh release | |
uses: orange-cloudfoundry/bosh-release-action@v2 | |
with: | |
target_branch: main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |