ci: use relative path for calling action #803
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Main CI/CD" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| # NOTE: This job is needed in order to register a deployment in github (for a given environment), here libecalc-test. We need that in order | |
| # to be able to automatically move issues on the board to Done. | |
| deploy-dummy: | |
| runs-on: ubuntu-24.04 | |
| environment: | |
| name: libecalc-test | |
| steps: | |
| - name: dummy | |
| run: echo "Deployed" | |
| pre-ci: | |
| uses: ./.github/workflows/pre-ci.yml | |
| lib-ci: | |
| uses: ./.github/workflows/lib-ci.yml | |
| docs-publish: | |
| uses: ./.github/workflows/docs-publish.yml | |
| secrets: inherit | |
| release-please: | |
| uses: ./.github/workflows/release-please.yml | |
| secrets: inherit |