Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/WallcroftUK/vanosilla into …
Browse files Browse the repository at this point in the history
…main
  • Loading branch information
WallcroftUK committed Feb 9, 2024
2 parents 930d7e1 + 8c1d595 commit 90c0dd0
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler

name: Labeler
on: [pull_request_target]

jobs:
label:

runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write

steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.TOKEN }}"
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build Debian Package

on:
push:
branches:
- main

jobs:
build:
name: Build Package
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install build dependencies
run: sudo apt-get update && sudo apt-get install -y debhelper

- name: Build Debian package
run: dpkg-deb --build vanosilla-linux

- name: Upload package artifact
uses: actions/upload-artifact@v2
with:
name: vanosilla-deb
path: vanosilla-linux/*.deb

0 comments on commit 90c0dd0

Please sign in to comment.