Skip to content

Commit

Permalink
Add leading relpath in GitHub Actions steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Lefkowitz committed Apr 14, 2024
1 parent 5bac694 commit 673a16f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/checkout@v3

- name: Install dependencies
uses: .github/actions/install
uses: ./.github/actions/install

- name: Setup GitHub Pages
uses: actions/configure-pages@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v3

- name: Install dependencies
uses: .github/actions/install
uses: ./.github/actions/install

- name: Build the package
run: python -m build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: actions/checkout@v3

- name: Install dependencies
uses: .github/actions/install
uses: ./.github/actions/install

- name: Run linters
run: thx lint
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT_NAME = Miniscons
PROJECT_NUMBER = 0.0.0
PROJECT_NUMBER = 0.1.0
PROJECT_BRIEF = SCons builders.

INPUT = src docs README.md
Expand Down

0 comments on commit 673a16f

Please sign in to comment.