Skip to content

Commit

Permalink
CI Iterate
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjohns committed Oct 22, 2024
1 parent c104f32 commit c7ab754
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ jobs:
- name: Download Build Artifacts
uses: actions/download-artifact@v4
with:
pattern: *-build
path: ./artifacts
pattern: '*-build'
path: './artifacts'
merge-multiple: true

- name: Display structure of downloaded files
Expand All @@ -240,13 +240,13 @@ jobs:
uses: softprops/action-gh-release@v2
with:
fail_on_unmatched_files: true
tag_name: bleeding-edge
tag_name: "bleeding-edge"
release_name: "Development Build"
body: "An automated, and untested build of the latest code pushed to the repository. Requires Windows 10, or may work on Windows 7 with the Edge browser runtime installed."
draft: false
generate_release_notes: false
prerelease: true
make_latest: true
files: ./artifacts/**
files: "./artifacts/**"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c7ab754

Please sign in to comment.