Skip to content

Commit

Permalink
trigger build
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmcguin committed May 15, 2024
1 parent 6687d6c commit 6e634c5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: dorny/paths-filter@v3
id: files_changed
with:
list-files: "json"
list-files: "shell"
filters: |
lib:
- 'packages/common/**/*'
Expand All @@ -31,12 +31,14 @@ jobs:
- name: Build Matrix
id: sites-matrix
run: |
for i in ${{ steps.changed-files-specific.outputs.all_changed_files }}; do \
echo ${i} \
sites="${i#*/sites/}" | cut -d'/' -f1; \
echo ${sites} \
echo SITES="${sites}" >> $GITHUB_OUTPUT; \
site_paths=(${{ toJson(steps.files_changed.outputs.sites_files) }}) \
sites=() \
for i in "${site_paths[@]}"; do \
site="${i#*/sites/}" | cut -d'/' -f1; \
sites+=("$site") \
echo ${site} \
done
echo SITES="${sites}" >> $GITHUB_OUTPUT; \
- name: List Changed Files
run: |
Expand Down
2 changes: 1 addition & 1 deletion sites/gig-smart/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import LayoutDefault from '@unicorn/common/src/layouts/layout.astro'
<LayoutDefault>
<section>
<p class="mb-2">
GigSmart Cover Letter
GigSmart Cover Letter!
</p>
</section>
</LayoutDefault>

0 comments on commit 6e634c5

Please sign in to comment.