Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
dbadura committed Nov 15, 2024
1 parent 8bf89e5 commit bb11c68
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,18 @@ jobs:
git tag ${{ github.event.inputs.name }}
git push origin ${{ github.event.inputs.name }}
build-web:
name: Build Busola web
needs: create-tag
uses: ./.github/workflows/busola-web-build.yml
with:
tag: ${{ github.event.inputs.name }}
build-backend:
name: Build busola backend
needs: create-tag
uses: ./.github/workflows/busola-backend-build.yml
with:
tag: ${{ github.event.inputs.name }}
# build-web:
# name: Build Busola web
# needs: create-tag
# uses: ./.github/workflows/busola-web-build.yml
# with:
# tag: ${{ github.event.inputs.name }}
# build-backend:
# name: Build busola backend
# needs: create-tag
# uses: ./.github/workflows/busola-backend-build.yml
# with:
# tag: ${{ github.event.inputs.name }}

# TODO: Run integration tests?
# integrations:
Expand All @@ -106,9 +106,9 @@ jobs:

create-draft:
name: Create draft release
needs:
- build-web
- build-backend
# needs:
# - build-web
# - build-backend
runs-on: ubuntu-latest

steps:
Expand All @@ -122,7 +122,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_BASE_REF: ${{ github.event.inputs.name }}
run: ./.github/scripts/create-changelog.sh ${{ github.event.inputs.name }}
run: ./.github/scripts/create_changelog.sh ${{ github.event.inputs.name }}

- name: Create draft release
id: create-draft
Expand Down

0 comments on commit bb11c68

Please sign in to comment.