Skip to content

Commit

Permalink
Updated .
Browse files Browse the repository at this point in the history
  • Loading branch information
lslvr committed Jan 26, 2024
1 parent 6d687c0 commit 0efd793
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
permissions: write-all

on:
push:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Deps
run: |
sudo apt-get -y install libfuse2
curl -o apprepo https://github.com/area-of-dev/apprepo.AppImage/releases/download/latest/apprepo.AppImage
chmod +x apprepo
- name: Build
run: |
PATH=$PATH:$PWD make all
- name: Release
uses: djnicholson/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
asset-name: ${{ github.event.repository.name }}
file: ${{ github.event.repository.name }}

0 comments on commit 0efd793

Please sign in to comment.