Skip to content

Commit

Permalink
ci: Fix typo in create_release.yml
Browse files Browse the repository at this point in the history
Also disable unrelated workflows whenever touching create_release
  • Loading branch information
iamsergio committed Dec 16, 2024
1 parent 10cb8d2 commit 6991400
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- tests/flutter/**
- examples/flutter/**
- tests/reference-images/**
- .github/workflows/create_release.yml

branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
- name: Create release
run: |
python3 ci-release-tools/src/create_release.py --repo KDDockWidgets --version ${{ github.event.inputs.version }}" --sha1 ${{ github.event.inputs.sha1 }}" --repo-path .
python3 ci-release-tools/src/create_release.py --repo KDDockWidgets --version ${{ github.event.inputs.version }} --sha1 ${{ github.event.inputs.sha1 }} --repo-path .
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ name: Examples and installed headers
on:
push:
branches:
- 2.1
- main
paths-ignore:
- .github/workflows/create_release.yml
pull_request:
branches:
- 2.1
- main

jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/flutter-rel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
push:
branches:
- main
paths-ignore:
- .github/workflows/create_release.yml
pull_request:
branches:
- main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/layouting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ name: Layouting library
on:
push:
branches:
- 2.1
- main
paths-ignore:
- .github/workflows/create_release.yml
pull_request:
branches:
- 2.1
- main

jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/mdbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Deploy mdBook site to Pages
on:
push:
branches: ["main"]
paths-ignore:
- .github/workflows/create_release.yml

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/valgrind-leakcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- tests/flutter/**
- examples/flutter/**
- tests/reference-images/**
- .github/workflows/create_release.yml
branches:
- main
pull_request:
Expand Down

0 comments on commit 6991400

Please sign in to comment.