Skip to content

Commit

Permalink
Fix definition of the workflow bosh-release-checks.yaml.
Browse files Browse the repository at this point in the history
  • Loading branch information
joergdw committed Sep 22, 2023
1 parent b0755b3 commit caf37d0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/bosh-release-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,19 @@ jobs:
runs-on: ubuntu-latest
container:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main

steps:
- name: Trust my checkout
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"

- uses: actions/checkout@v4
- name: sync-package-specs
run: make package-specs
shell: bash
run: |
#! /usr/bin/env bash
set -eu -o pipefail
make --directory='./src/acceptance/assets/app/go_app' generate-fakes
make --directory='./src/autoscaler' generate-fakes
make package-specs
- name: Check if there is any change
run: |
[ $(git status --porcelain | wc -l) -eq 0 ] || \
Expand All @@ -30,7 +34,6 @@ jobs:
echo "::error::Specs are out of date, run \"make package-specs\" to update";\
exit 1;\
}
bosh-release:
needs: generate-gosub
name: Create Bosh Release
Expand Down

0 comments on commit caf37d0

Please sign in to comment.