Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
B0ney committed Feb 8, 2024
1 parent c2d042f commit 411d3df
Showing 1 changed file with 31 additions and 9 deletions.
40 changes: 31 additions & 9 deletions .github/workflows/build_gui_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
make: bash dist/build-linux.sh
artifact_path: "target/release/artifact/*"

- target: windows
os: windows-latest
make: powershell dist/build-windows.ps1
artifact_path: "target/release/artifact/*"
# - target: windows
# os: windows-latest
# make: powershell dist/build-windows.ps1
# artifact_path: "target/release/artifact/*"

- target: macos
os: macos-latest
make: bash dist/build-macos.sh
artifact_path: "target/release/artifact/*"
# - target: macos
# os: macos-latest
# make: bash dist/build-macos.sh
# artifact_path: "target/release/artifact/*"

runs-on: ${{ matrix.target.os }}

Expand All @@ -48,4 +48,26 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target.target }}
path: ${{ matrix.target.artifact_path }}
path: ${{ matrix.target.artifact_path }}

checksum:
name: Generate Checksum
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: get artifacts
path: release

- name: Generate checksum
uses: jmgilman/actions-generate-checksum@v1
with:
patterns: |
release/*.zip
release/*.tar.gz
- name: Upload checksum
uses: actions/upload-artifact@v3
with:
path: checksum.txt

0 comments on commit 411d3df

Please sign in to comment.