Skip to content

Commit

Permalink
Build optimized Linux artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Miepee committed May 22, 2024
1 parent 7a5d55c commit 4adcfd4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-optimized.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build optimized

on:
workflow_dispatch:

jobs:
linux:
runs-on: ubuntu-latest
container: ghcr.io/pyca/cryptography-manylinux_2_28:x86_64
steps:
- uses: actions/checkout@v4
- name: Dependencies
run: dnf install -y gtk3-devel zip
- name: Build
run: ./make.sh
- name: Zip to Archive
run: zip -9 ./linux-x64.zip ./flips
- name: Upload Artifacts
uses: actions/[email protected]
with:
name: linux-x64-gui.zip
path: ./linux-x64.zip

0 comments on commit 4adcfd4

Please sign in to comment.