Skip to content

Commit

Permalink
Merge pull request #48 from rubenvitt/develop
Browse files Browse the repository at this point in the history
chore(workflow): relocate listing of frontend artifacts in release wo…
  • Loading branch information
rubenvitt authored Oct 12, 2024
2 parents b1d37c9 + 81d862c commit 6c43e15
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,6 @@ jobs:
projectPath: frontend
args: ${{ matrix.args }}

- name: List frontend artifacts
run: |
echo "Listing contents of frontend-artifacts directory:"
find frontend-artifacts -type d
echo "Listing all .dmg, .AppImage, and .msi files:"
find frontend-artifacts -type f \( -name "*.dmg" -o -name "*.AppImage" -o -name "*.msi" \)
echo "Listing contents of src-tauri/target directory:"
find frontend-artifacts -type d -name "src-tauri" -exec find {}/target -type f \( -name "*.dmg" -o -name "*.AppImage" -o -name "*.msi" \) \;
- name: Upload Frontend Artifact
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -173,6 +164,15 @@ jobs:
with:
path: frontend-artifacts

- name: List frontend artifacts
run: |
echo "Listing contents of frontend-artifacts directory:"
find frontend-artifacts -type d
echo "Listing all .dmg, .AppImage, and .msi files:"
find frontend-artifacts -type f \( -name "*.dmg" -o -name "*.AppImage" -o -name "*.msi" \)
echo "Listing contents of src-tauri/target directory:"
find frontend-artifacts -type d -name "src-tauri" -exec find {}/target -type f \( -name "*.dmg" -o -name "*.AppImage" -o -name "*.msi" \) \;
- name: Prepare Release Notes
run: |
echo "Backend Docker Image Tags:" >> RELEASE_NOTES.md
Expand Down

0 comments on commit 6c43e15

Please sign in to comment.