Skip to content

Commit

Permalink
Add Github Action for packaging (Open-Wine-Components#51)
Browse files Browse the repository at this point in the history
Add Github Action for packaging
  • Loading branch information
R1kaB3rN authored Mar 2, 2024
1 parent 66f2358 commit 17a1bb1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Make workflow

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get install meson shellcheck
- name: Initialize submodules
run: |
git submodule update --init --recursive
- name: Lint using Shellcheck
run: |
shellcheck configure.sh
- name: Make system package
run: |
./configure.sh --prefix=/usr
sudo make PREFIX=/usr install

0 comments on commit 17a1bb1

Please sign in to comment.