Skip to content

Commit

Permalink
💚 use absolute paths for reusable workflow (#136)
Browse files Browse the repository at this point in the history
### TL;DR

This PR fixes the CI workflow.

### What changed?

The CI workflow was updated to resolve the issues that were causing the build to fail.

### How to test?

To test this change, trigger the CI workflow and ensure that the build passes successfully.

### Why make this change?

This change was necessary to ensure that the CI workflow is functioning correctly and that the build is successful.

---
  • Loading branch information
mingi3314 authored Jun 6, 2024
1 parent 9088355 commit 61928ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/backend-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@ jobs:
fi
- name: Call Reusable Workflow to Build Backend for Linux
uses: ./.github/workflows/build-backend-executable.yaml
uses: mingi3314/PyRb/.github/workflows/build-backend-executable.yaml@main
with:
platform: linux

- name: Call Reusable Workflow to Build Backend for macOS
uses: ./.github/workflows/build-backend-executable.yaml
uses: mingi3314/PyRb/.github/workflows/build-backend-executable.yaml@main
with:
platform: macos

- name: Call Reusable Workflow to Build Backend for Windows
uses: ./.github/workflows/build-backend-executable.yaml
uses: mingi3314/PyRb/.github/workflows/build-backend-executable.yaml@main
with:
platform: windows

Expand Down
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyrb"
version = "0.10.7"
version = "0.10.8"
description = "Python Rebalancer"
authors = ["Minki Kim <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 61928ef

Please sign in to comment.