Skip to content

Commit

Permalink
Added prefix ./.github/ to workflow references
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Apr 3, 2024
1 parent 648dad9 commit 08925f5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ jobs:

check-tag-version-job:
name: Check Release Tag
uses: workflows/check-release-tag.yml
uses: ./.github/workflows/check-release-tag.yml

ci-job:
name: Checks
needs: [ check-tag-version-job ]
uses: workflows/checks.yml
uses: ./.github/workflows/checks.yml

cd-job:
name: Continues Delivery
needs: [ ci-job ]
uses: workflows/build-and-publish.yml
uses: ./.github/workflows/build-and-publish.yml
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

metrics:
needs: [ ci-job ]
uses: workflows/report.yml
uses: ./.github/workflows/report.yml
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:

ci-job:
name: Checks
uses: workflows/checks.yml
uses: ./.github/workflows/checks.yml

metrics:
needs: [ ci-job ]
uses: workflows/report.yml
uses: ./.github/workflows/report.yml
6 changes: 3 additions & 3 deletions .github/workflows/pr-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:

ci-job:
name: Checks
uses: workflows/checks.yml
uses: ./.github/workflows/checks.yml

publish-docs:
name: Publish Documentation
uses: workflows/gh-pages.yml
uses: ./.github/workflows/gh-pages.yml

metrics:
needs: [ ci-job ]
uses: workflows/report.yml
uses: ./.github/workflows/report.yml

0 comments on commit 08925f5

Please sign in to comment.