ref: 036e8e66c7fb107d1b411b6142e60a0bfe6c6ea0
parent: 91aa86c4fad22677e7ea551f46024cba29595a81
author: allkern <lisandroaalarcon@gmail.com>
date: Thu Jun 22 17:02:49 EDT 2023
Fix Ubuntu permissions
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -14,9 +14,14 @@
run: |
sudo apt update
sudo apt install libsdl2-dev
- - name: make
- run: make
+ - name: Build PSXE
+ run: |
+ make
+ - name: Pack executable
+ run:
+ chmod 777 ./bin/psxe
+ tar -czf psxe-ubuntu-latest.tar.gz ./bin/psxe
- uses: actions/upload-artifact@v3
with:
name: psxe-ubuntu-latest
- path: bin/psxe
\ No newline at end of file
+ path: ./psxe-ubuntu-latest.tar.gz
\ No newline at end of file
--
⑨