Skip to content

Commit

Permalink
Updated build script path in CI workflow (#73)
Browse files Browse the repository at this point in the history
* Updated build script path in CI workflow

The CI workflow has been updated to reflect changes in the build script's location. The 'make' command now points to 'out/install.sh' instead of 'dist/install.sh'. This change also affects the test command, ensuring it aligns with the new script location.

* Updated CI workflow triggers

Added a new path to the list of files that trigger the continuous integration workflow. This ensures that any changes in the .github/workflows directory will now initiate the CI process.
  • Loading branch information
UnstoppableMango authored Jul 31, 2024
1 parent 5a465c6 commit 32a447d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
uses: tj-actions/changed-files@v44
with:
files: |
.github/workflows/**
provider/cmd/provisioner/install.sh
goreleaser:
Expand Down Expand Up @@ -323,8 +324,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Make dist/install.sh
run: make dist/install.sh
- name: Make install script
run: make out/install.sh

- name: Test
run: make .test/install_script

0 comments on commit 32a447d

Please sign in to comment.