-
With this https://github.com/AlwinEsch/test-xbmc/blob/master/.github/workflows/documentation-creation.yml#L37-L51 (temporary Repo for tests) I have the dilemma that "pages build and deployment" is started twice. It then breaks off the first again and brings it up correctly in the second, but I don't think it's so nice that unnecessary process work is then carried out (see also https://github.com/AlwinEsch/test-xbmc/actions). Is there a way to avoid the upload in the first and only to do it in the second, or other ways to create two different documentation in one branch? The background in Kodi is to bring in documentation for itself and suitable for add-ons, associated request here xbmc/xbmc#20511. If something exists and I overlooked it in the search, is there already an issue, discussion or something else? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
We can run workflows sequentially. jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps: For more details:
|
Beta Was this translation helpful? Give feedback.
-
I had forgotten correct Was just about a slightly different problem. I have now introduced it in a different way, so that Maybe it would be a feature publish_dir: ["./folder/xyz", "./another_folder/zyx"] and all goes to |
Beta Was this translation helpful? Give feedback.
We can run workflows sequentially.
For more details: